:root {
  --ink: #0c2340;
  --ink-mid: #1b4f72;
  --ink-soft: #4a7a9b;
  --ink-faint: #85a9c0;
  --sage: #0077b6;
  --sage-deep: #003d6b;
  --sage-glow: #4cc9e0;
  --sage-pale: #e0f6fd;
  --cream: #fffbf5;
  --cream-deep: #f5ecd8;
  --amber: #f4a800;
  --amber-pale: #fef7e0;
  --white: #ffffff;
  --border: rgba(0, 119, 182, 0.14);
  --border-mid: rgba(0, 119, 182, 0.28);
  --sh-sm: 0 2px 12px rgba(0, 61, 107, 0.07);
  --sh-md: 0 8px 32px rgba(0, 61, 107, 0.11);
  --sh-lg: 0 24px 64px rgba(0, 61, 107, 0.14);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: clip;
  font-size: 20px;
}
h1,
h2,
h3,
.serif {
  font-family: "Inter", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

/*  LAYOUT  */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.section {
  padding: 88px 5%;
}
.slabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.slabel::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}
.stitle {
  font-size: clamp(29px, 3.85vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.ssub {
  font-size: 21px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 48px;
}
.prx-bg .ssub { text-align: left; }

/*  NAV  */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 61, 107, 0.06);
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(0, 119, 182, 0.08);
  box-shadow: 0 2px 16px rgba(0, 61, 107, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
}
.nav-links {
  display: flex;
  gap: 22px;
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-cta {
  background: var(--amber);
  color: #001428;
  padding: 9px 17px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: #e09a00;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(244, 168, 0, 0.35);
}
.nav-cta svg {
  stroke: #001428;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-mid);
  border-radius: 2px;
}
.nav-hamburger span:nth-child(1),
.nav-hamburger span:nth-child(3) { transition: transform 0.3s ease; }
.nav-hamburger span:nth-child(2) { transition: opacity 0.1s ease; }
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 61, 107, 0.08);
  padding: 10px 5% 16px;
  z-index: 199;
  flex-direction: column;
  overflow-x: hidden;
  box-sizing: border-box;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-size: 18px;
  color: var(--ink-mid);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile a:hover {
  color: var(--ink);
}

/*  HERO  */
.hero {
  padding: 88px 5% 52px;
  background: linear-gradient(150deg, #daeefa 0%, #edf6ff 45%, #f8f4ee 100%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  align-items: stretch;
}
.hero-left {
  display: flex;
  flex-direction: column;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: white;
  padding: 8px 18px 8px 10px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 26px;
  border: none;
  letter-spacing: 0.1px;
  box-shadow: 0 2px 10px rgba(12, 35, 64, 0.18);
}
.bdot {
  width: 22px;
  height: 22px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bdot svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-tagline {
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--sage);
  line-height: 1.3;
  margin-bottom: 18px;
}
.hero-h1 {
  font-size: clamp(35px, 4.95vw, 59px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--sage);
}
.hero-sub {
  font-size: 21px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 440px;
}
.hero-stats {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.stat-num {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat-num span {
  color: var(--sage);
}
.stat-price {
  color: #f97316;
}
.stat-lbl {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/*  QUOTE CARD  */
#quote,
#services,
#how,
#pricing,
#faq {
  scroll-margin-top: 84px;
}
.price-note {
  font-size: 14px;
  color: #f97316;
  margin-top: 10px;
  letter-spacing: 0.3px;
}
.naati-label-badge {
  height: 0.75em;
  width: auto;
  vertical-align: middle;
  margin-left: 0.1em;
}
.qcard {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.qstripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--sage), var(--amber), var(--sage-glow));
}
.qtitle {
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.qsub {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.fr {
  margin-bottom: 12px;
}
.fl {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.doc-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.doc-clear-btn {
  background: #e2e8f0;
  border: none;
  color: var(--ink-mid);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: background 0.15s, color 0.15s;
}
.doc-clear-btn:hover { background: #fecaca; color: #dc2626; }
.doc-clear-btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
  border-radius: 4px;
}
.fi,
.fs,
.fta {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.fi:focus,
.fs:focus,
.fta:focus {
  border-color: var(--sage);
  background: var(--white);
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  appearance: textfield;
}
input.fi {
  min-height: 42px;
}
.fta {
  height: 64px;
  resize: none;
}
.f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fsub {
  width: 100%;
  padding: 15px;
  background: var(--amber);
  color: #001428;
  border: none;
  border-radius: var(--r-sm);
  font-size: 19px;
  font-weight: 700;
  margin-top: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(244, 168, 0, 0.35);
  letter-spacing: -0.2px;
}
.fsub:hover {
  background: #e09800;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(244, 168, 0, 0.5);
}
.fnote {
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 8px;
}
.pay-sec {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--border);
}
.pay-ttl {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.pchip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 7px;
  border: 1.5px solid var(--border-mid);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mid);
  background: var(--cream);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.pchip:hover {
  border-color: var(--sage);
  color: var(--sage);
}
.pchip.on {
  border-color: var(--sage);
  background: var(--sage-pale);
  color: var(--sage-deep);
}
.pchip input {
  display: none;
}
.pd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pd-pp {
  background: #003087;
}
.pd-vs {
  background: #1a1f71;
}
.pd-mc {
  background: #eb001b;
}
.pd-ws {
  background: #00b9ff;
}
.pd-pn {
  background: #ff4800;
}
.pd-ex {
  background: #e53935;
}
.rutag {
  font-size: 10px;
  font-weight: 700;
  background: rgba(229, 57, 53, 0.1);
  color: #c62828;
  padding: 1px 4px;
  border-radius: 3px;
}
/*  custom single-select (language + turnaround)  */
.csel {
  position: relative;
}
.csel-trigger {
  min-height: 42px;
  padding: 10px 34px 10px 13px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  user-select: none;
  font-size: 17px;
  color: var(--ink);
  transition:
    border-color 0.2s,
    background 0.2s;
  overflow: hidden;
}
.csel-trigger > span:first-child {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.csel-trigger:hover {
  border-color: var(--sage);
}
.csel-trigger.open {
  border-color: var(--sage);
  background: var(--white);
}
.csel-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-md);
  z-index: 100;
  max-height: 230px;
  overflow-y: auto;
  display: none;
}
.csel-dropdown.open {
  display: block;
}
.csel-search {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-bottom: 1.5px solid var(--border-mid);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  box-sizing: border-box;
  border-radius: 0;
}
.csel-search::placeholder {
  color: var(--ink-faint);
}
.csel-option {
  padding: 10px 14px;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.12s;
  border-bottom: 1px solid var(--border);
}
.csel-option:last-child {
  border-bottom: none;
}
.csel-option:hover {
  background: var(--sage-pale);
}
.csel-option.sel {
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-weight: 500;
}
.csel-option.sel::after {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  font-size: 14px;
}

/* doc multi-select dropdown */
.doc-select {
  position: relative;
}
.doc-tags {
  min-height: 42px;
  padding: 6px 34px 6px 10px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
  user-select: none;
}
.doc-tags:hover {
  border-color: var(--sage);
}
.doc-tags.open {
  border-color: var(--sage);
  background: var(--white);
}
.doc-placeholder {
  font-size: 17px;
  color: var(--ink-faint);
  pointer-events: none;
}
.doc-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sage-pale);
  color: var(--sage-deep);
  border: 1px solid var(--sage-glow);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  white-space: nowrap;
}
.doc-tag-name {
  flex: 0 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
.doc-tag-counter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.doc-tag-pg-btn {
  width: 31px;
  height: 31px;
  border: none;
  border-radius: 7px;
  background: var(--sage);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.doc-tag-pg-btn:hover { background: var(--sage-deep); }
.doc-tag-pages {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--sage-deep);
}
.doc-tag-x {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #e2e8f0;
  color: var(--ink-mid);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  transition: background 0.15s;
  opacity: 1;
}
.doc-tag-x:hover { background: #fecaca; color: #dc2626; }
.doc-tag-pkg-pill {
  background: var(--amber);
  color: #001428;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .doc-tag { padding: 10px 12px; font-size: 14px; }
  .doc-tag-pg-btn { width: 34px; height: 34px; }
}
.quote-price-breakdown {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.qp-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: #f5f8fb;
}
.qp-bundle { background: #eef6ff; }
.qp-total {
  border-top: 1.5px solid #dde4ec;
  background: none;
  padding-top: 8px;
  margin-top: 2px;
}
.qp-label { color: var(--ink-mid); }
.qp-amount { font-weight: 700; color: var(--ink); }
.qp-surcharge .qp-amount { color: var(--sage); }
.qp-por { font-weight: 600; color: var(--ink-mid); font-style: italic; }
.qp-off {
  font-size: 10px;
  font-weight: 700;
  color: #1a8a3c;
  background: #e8f8ef;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
}
.qp-total .qp-amount { font-size: 16px; color: var(--sage); }
.pkg-custom-cta {
  text-align: center;
  font-size: 21px;
  color: var(--ink-mid);
  margin-top: 20px;
}
.pkg-custom-btn {
  display: inline-block;
  background: var(--amber);
  color: #001428;
  border: none;
  border-radius: 28px;
  padding: 10px 22px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
  vertical-align: middle;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.pkg-custom-btn:hover {
  background: #e09a00;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(244, 168, 0, 0.35);
  color: #001428;
}
.pkg-custom-btn:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
.doc-arrow {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-size: 24px;
  pointer-events: none;
  transition: transform 0.25s;
}
.doc-tags.open .doc-arrow,
.csel-trigger.open .doc-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.doc-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-md);
  z-index: 100;
  max-height: 230px;
  overflow-y: auto;
  display: none;
}
.doc-dropdown.open {
  display: block;
}
.doc-option {
  padding: 10px 14px;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.12s;
  border-bottom: 1px solid var(--border);
}
.doc-option:last-child {
  border-bottom: none;
}
.doc-option:hover {
  background: var(--sage-pale);
}
.doc-option.sel {
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-weight: 500;
}
.doc-option.sel::after {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  font-size: 14px;
}
.doc-none {
  font-size: 13px;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}

.fsuccess {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.fsuccess.show {
  display: block;
}
.fring {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--sage-pale);
  margin: 0 auto 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fring svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fsuccess h4 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}
.fsuccess p {
  font-size: 14px;
  color: var(--ink-soft);
}

/*  HERO TRUST STRIP  */
@keyframes htrust-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}
/* shared base */
.hero-trust {
  max-width: 1200px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 119, 182, 0.14);
}
.htrust-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 24px;
}
.htrust-set {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.htrust-set:not(:first-child) {
  display: none;
}
.htrust-sep {
  display: none;
}
.htrust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}
.htrust-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.htrust-logo-ha {
  height: 60px;
}
.htrust-logo-blend {
  mix-blend-mode: multiply;
}
/* mobile: animated marquee */
@media (max-width: 768px) {
  .hero-trust {
    overflow: hidden;
    margin-top: 16px;
    padding-top: 14px;
  }
  .htrust-track {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: max-content;
    animation: htrust-scroll 32s linear infinite;
  }
  .htrust-track:hover {
    animation-play-state: paused;
  }
  .htrust-set:not(:first-child) {
    display: flex;
  }
  .htrust-logo {
    height: 35px;
  }
  .htrust-logo-ha {
    height: 35px;
  }
  .htrust-sep {
    display: none;
    height: 56px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .htrust-track {
    animation: none;
  }
}

/*  PAYMENT STRIP  */
.pstrip {
  background: var(--cream-deep);
  padding: 24px 5%;
  border-bottom: 1px solid var(--border);
}
.pstrip-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pstrip-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  white-space: nowrap;
}
.pdivider {
  width: 1px;
  height: 24px;
  background: var(--border-mid);
  flex-shrink: 0;
}
.plogos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ppill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mid);
  box-shadow: var(--sh-sm);
  transition: all 0.15s;
}
.ppill:hover {
  border-color: var(--sage);
  color: var(--sage);
}
.pldot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rubadge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(229, 57, 53, 0.12);
  color: #c62828;
  padding: 2px 5px;
  border-radius: 4px;
}

/*  SERVICES  */
.svc-bg {
  background: var(--white);
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.dcard {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 20px 16px;
  border: 1.5px solid var(--border);
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dcard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.dcard:hover {
  border-color: var(--sage-glow);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.dcard:hover::after {
  transform: scaleX(1);
}
.dicon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.dicon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dname {
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.dprice {
  font-size: 18px;
  color: var(--sage);
  font-weight: 700;
}
.dpop {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  background: var(--amber);
  color: white;
  padding: 2px 7px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/*  HOW IT WORKS  */
.how-bg {
  background: var(--cream);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(12.5% + 27px);
  right: calc(12.5% + 27px);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--sage-glow) 0,
    var(--sage-glow) 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.snum {
  width: 54px;
  height: 54px;
  background: var(--sage);
  color: white;
  border-radius: 50%;
  margin: 0 auto 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 119, 182, 0.3);
  transition: transform 0.2s;
}
.step:hover .snum {
  transform: scale(1.08);
}
.step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/*  STAR (used in reviews)  */
.star {
  color: var(--amber);
  font-size: 14px;
  line-height: 1;
}

/*  PRICING  */
.prx-bg {
  background: var(--white);
}
/*  PACKAGE CARDS  */
.pkg-grid {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 32px;
}
.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  flex: 1;
  max-width: 310px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
}
.pkg-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  border-color: var(--sage);
}
.pkg-card.feat {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 61, 107, 0.25);
}
.pkg-card.feat:hover {
  transform: translateY(-14px);
  box-shadow: 0 16px 48px rgba(0, 61, 107, 0.32);
  border-color: var(--sage-deep);
}
.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-cat {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.pkg-card.feat .pkg-cat {
  color: rgba(255, 255, 255, 0.55);
}
.pkg-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
}
.pkg-card.feat .pkg-title { color: #fff; }
.pkg-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.pkg-card.feat .pkg-sub { color: rgba(255, 255, 255, 0.5); }
.pkg-price-block {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.pkg-price-orig {
  font-size: 23px;
  font-weight: 600;
  color: #aab0bb;
  text-decoration: line-through;
  text-decoration-color: #dd0033;
  line-height: 1;
}
.pkg-card.feat .pkg-price-orig { color: rgba(255, 255, 255, 0.35); }
.pkg-price-disc {
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1px;
}
.pkg-card.feat .pkg-price-disc { color: #fff; }
.pkg-price-disc sup {
  font-size: 23px;
  font-weight: 700;
  vertical-align: super;
}
.pkg-discount-tag {
  background: #e8f8ef;
  color: #1a8a3c;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.pkg-card.feat .pkg-discount-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #7effa3;
}
.pkg-price-note {
  font-size: 13px;
  color: #9aacbb;
  margin-bottom: 18px;
}
.pkg-card.feat .pkg-price-note { color: rgba(255, 255, 255, 0.4); }
.pkg-btn {
  display: block;
  width: 100%;
  padding: 11px 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  background: var(--sage);
  color: #fff;
}
.pkg-btn:hover {
  background: var(--sage-deep);
  transform: scale(1.02);
}
.pkg-btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}
.pkg-btn.pkg-btn-feat {
  background: var(--amber);
  color: #001428;
}
.pkg-btn.pkg-btn-feat:hover { background: #d99000; }
.pkg-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 18px;
}
.pkg-card.feat .pkg-divider { border-color: rgba(255, 255, 255, 0.12); }
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  color: var(--ink-mid);
}
.pkg-card.feat .pkg-features li { color: rgba(255, 255, 255, 0.8); }
.pkg-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--sage-pale);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%230077b6' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pkg-card.feat .pkg-check {
  background-color: rgba(255, 255, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%237effa3' stroke-width='2'/%3E%3C/svg%3E");
}
.pkg-feat-name { flex: 1; }
.pkg-feat-price {
  font-size: 14px;
  font-weight: 600;
  color: #9aacbb;
  white-space: nowrap;
}
.pkg-card.feat .pkg-feat-price { color: rgba(255, 255, 255, 0.4); }
.pkg-pages-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 12px;
  font-style: italic;
}

/*  PACKAGE BANNER (inside quote form)  */
.pkg-banner {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--sage-deep);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 13.5px;
  font-weight: 600;
}
.pkg-banner.show { display: flex; }

/*  WHY US  */
.why-bg {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.why-bg::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.13) 0%, transparent 60%);
  pointer-events: none;
}
.wgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.wcard {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-md);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
}
.wcard:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(76, 201, 224, 0.3);
}
.wico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.wico svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--sage-glow);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wcard h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.wcard p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}
.why-bg .stitle {
  color: white;
}
.why-bg .ssub {
  color: rgba(255, 255, 255, 0.72);
}

/*  REVIEWS  */
.rev-bg {
  background: var(--cream);
}
.rgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.rcard {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 23px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
}
.rstars {
  display: flex;
  gap: 2px;
  margin-bottom: 11px;
}
.rtext {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 16px;
  padding: 0;
  flex: 1;
  border: none;
}
.rauth {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--sage-deep);
  flex-shrink: 0;
}
.rname {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.rdet {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 2px;
}

/*  FAQ  */
.faq-bg {
  background: var(--white);
}
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.fitem {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: 19px 21px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.fitem:hover {
  border-color: var(--sage-glow);
}
.fq {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}
.fqb {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  background: var(--sage);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.fa {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-left: 31px;
}

/*  CTA  */
.cta-sec {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  padding: 84px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-sec h2 {
  font-size: clamp(26px, 4.4vw, 44px);
  color: white;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.cta-sec p {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cta-content {
  text-align: center;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.btn-w {
  background: white;
  color: var(--sage-deep);
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 19px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
}
.btn-ow {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 19px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-ow:hover {
  border-color: white;
}

/*  FOOTER  */
.footer {
  background: #001428;
  padding: 50px 0 26px;
}
.f-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.f-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  margin-bottom: 0;
}
.f-bn {
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: white;
  margin-bottom: 11px;
}
.f-bd {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}
.f-pay {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.fpch {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.4px;
}
.f-col h5,
.f-col .f-acc-ttl {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 13px;
}
.f-col a,
.f-acc-body ul li a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.f-col a:hover,
.f-acc-body ul li a:hover {
  color: var(--sage-glow);
}
.f-acc-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.f-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.26);
  padding-top: 20px;
}

/*  FOOTER ACCORDION  */
.f-acc-hd {
  width: 100%;
  background: none;
  border: none;
  padding: 0 0 13px;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  font-family: inherit;
  pointer-events: none;
  text-align: left;
}
.f-col.f-accordion h5,
.f-col.f-accordion .f-acc-ttl {
  margin-bottom: 0;
}
.f-acc-icon {
  display: none;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

/*  FABs  */
.fab-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-end;
}
.fab-w {
  position: relative;
  display: flex;
  align-items: center;
}
.fab-tip {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  top: 50%;
  transform: translateY(-50%);
}
.fab-tip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
}
.fab-w:hover .fab-tip {
  opacity: 1;
}
.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  border: none;
}
.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.fab-wa {
  background: #25d366;
}
.fab-tg {
  background: #229ed9;
}
.fab svg {
  width: 25px;
  height: 25px;
  fill: white;
}

/*  FOOTER PAYMENT ROW  */
.f-pay-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 22px 5%;
  background: white;
  margin: 0;
}
.pay-icon-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 10px 20px;
  height: 72px;
  transition: all 0.2s;
  cursor: default;
}
.pay-icon-pill:hover {
  background: rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.pay-icon-pill img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.pay-icon-ex {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 12px;
  height: 72px;
  font-size: 17px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  cursor: default;
}

/*  PAYMENT LOGO CARDS  */
.plogos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.plogo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 14px;
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  height: 44px;
  min-width: 84px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
  cursor: default;
  flex-shrink: 0;
}
.plogo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.16);
}
.plogo-card svg {
  display: block;
}

/*  FOLLOW US BAR  */
.follow-bar {
  background: #0d1420;
  padding: 16px 5%;
}
.follow-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.follow-lbl {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.follow-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sicon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.sicon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.sicon svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
  display: block;
  transition: fill 0.2s;
}
.sicon:hover svg {
  fill: white;
}

/*  SECTION CTA BUTTONS  */
.sec-cta {
  display: flex;
  width: fit-content;
  margin: 36px auto 0;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 19px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.sec-cta-sage {
  background: var(--sage);
  color: white;
}
.sec-cta-sage:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 119, 182, 0.35);
}
.sec-cta-amber {
  background: var(--amber);
  color: #001428;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(244, 168, 0, 0.3);
}
.sec-cta-amber:hover {
  background: #e09800;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(244, 168, 0, 0.45);
}
.sec-cta-outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.sec-cta-outline:hover {
  background: var(--sage);
  color: white;
  transform: translateY(-2px);
}

/*  SCROLL REVEAL  */
.sr {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr.sr-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .sr {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-left > *,
  .qcard {
    animation: none;
  }
}

/*  ANIMATIONS  */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-left > * {
  animation: fadeUp 0.5s ease both;
}
.hero-left > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-left > *:nth-child(2) {
  animation-delay: 0.12s;
}
.hero-left > *:nth-child(3) {
  animation-delay: 0.2s;
}
.hero-left > *:nth-child(4) {
  animation-delay: 0.27s;
}
.hero-left > *:nth-child(5) {
  animation-delay: 0.34s;
}
.hero-left > *:nth-child(6) {
  animation-delay: 0.41s;
}
.qcard {
  animation: fadeUp 0.5s 0.12s ease both;
}

/*  RESPONSIVE  */
@media (max-width: 1024px) {
  /* ── Remove double 5% padding (section already provides outer padding) ── */
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }
  /* ── Hero vertical padding ── */
  .hero {
    padding-top: 64px;
    padding-bottom: 36px;
  }
  .hero-left {
    width: 100%;
  }
  .qcard {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
  /* ── Follow bar ── */
  .follow-in {
    justify-content: center;
  }
  /* ── Footer accordion ── */
  .f-top {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .f-brand {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .f-acc-hd {
    padding: 16px 0;
    cursor: pointer;
    pointer-events: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .f-acc-icon {
    display: block;
  }
  .f-accordion.open .f-acc-icon {
    transform: rotate(180deg);
  }
  .f-acc-body {
    display: none;
    padding-bottom: 12px;
  }
  .f-accordion.open .f-acc-body {
    display: block;
  }
}
@media (max-width: 900px) {
  /* ── Nav: hide CTA, show hamburger only ── */
  .nav-cta {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  /* ── Hero ── */
  .hero {
    padding: 48px 5% 32px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
  .wgrid {
    grid-template-columns: 1fr 1fr;
  }
  /* ── Reviews: center 3rd card when alone in 2-col row ── */
  .rgrid {
    grid-template-columns: 1fr 1fr;
  }
  .rgrid .rcard:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 9px);
    margin: 0 auto;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .rgrid {
    grid-template-columns: 1fr;
  }
  .tbar-inner {
    gap: 20px;
  }
  .docs-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .f-pay-row {
    gap: 8px;
  }
  /* Pricing: accordion replaces slider */
  .pkg-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .pkg-card,
  .pkg-card.feat {
    flex: 1 1 auto;
    max-width: 100%;
    transform: none;
    padding-right: 48px;
  }
  .pkg-card.feat:hover,
  .pkg-card:hover {
    transform: none;
  }
  .pkg-card::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 22px;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    pointer-events: none;
  }
  .pkg-card.feat::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
  .pkg-card.open::after {
    transform: rotate(-135deg);
    top: 32px;
  }
  .pkg-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .pkg-card.open .pkg-acc-body {
    max-height: 600px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 50px 5%;
  }
  .hero {
    padding: 44px 5% 28px;
  }
  .hero-h1 {
    font-size: 28px;
  }
  .hero-sub {
    font-size: 18px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .wgrid {
    grid-template-columns: 1fr;
  }
  .tgrid {
    grid-template-columns: 1fr;
  }
  .tbar-inner {
    gap: 14px;
  }
  .f-top {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .f-bot {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .f2 {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .follow-in {
    justify-content: center;
  }
  .mkt-hdr {
    flex-direction: column;
    align-items: flex-start;
  }
  .plogo-card {
    min-width: 70px;
    padding: 0 10px;
  }
  .btn-w,
  .btn-ow {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/*  MOBILE SLIDERS  */
@media (max-width: 768px) {
  /* Bleed to screen edges */
  .slider-wrap {
    margin: 0 -5vw;
    position: relative;
  }

  /* Right-edge fade hint */
  .slider-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    width: 48px;
    pointer-events: none;
    z-index: 2;
  }
  .svc-bg .slider-wrap::after {
    background: linear-gradient(to right, transparent, #fff);
  }
  .rev-bg .slider-wrap::after,
  .how-bg .slider-wrap::after {
    background: linear-gradient(to right, transparent, var(--cream));
  }
  .faq-bg .slider-wrap::after {
    background: linear-gradient(to right, transparent, #fff);
  }

  /* Shared track */
  .slider-wrap .docs-grid,
  .slider-wrap .rgrid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 5vw 12px;
    margin: 0;
  }
  .slider-wrap .docs-grid::-webkit-scrollbar,
  .slider-wrap .rgrid::-webkit-scrollbar {
    display: none;
  }

  /* Doc card sizing — 2 cards + peek of 3rd */
  .slider-wrap .docs-grid .dcard {
    scroll-snap-align: start;
    flex: 0 0 44%;
    min-width: 0;
  }

  /* Review card sizing — 1 card fills screen */
  .slider-wrap .rgrid {
    scroll-padding-left: 5vw;
  }
  .slider-wrap .rgrid .rcard {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex: 0 0 90vw;
    min-width: 0;
  }

  /* Reset 900px last-odd-card centering — not valid inside sliders */
  .slider-wrap .rgrid .rcard:last-child:nth-child(odd) {
    max-width: none;
    grid-column: auto;
    margin: 0;
  }

  /* FAQ accordion */
  .fgrid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .fitem {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    padding: 0;
  }
  .fitem:first-child {
    border-top: 1px solid var(--border);
  }
  .fq {
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
  }
  .fq::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--ink-soft);
    border-bottom: 2px solid var(--ink-soft);
    transform: rotate(45deg) translateY(-3px);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
  }
  .fitem.open .fq::after {
    transform: rotate(-135deg) translateY(1px);
  }
  .fa {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 0;
    transition:
      max-height 0.38s ease,
      opacity 0.28s ease,
      padding-bottom 0.38s ease;
    padding-bottom: 0;
  }
  .fitem.open .fa {
    max-height: 220px;
    opacity: 1;
    padding-bottom: 15px;
  }

}

/* Dot track */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 14px 0 0;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-mid);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    width 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.32s;
  flex-shrink: 0;
}

.slider-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--sage);
}

@media (min-width: 769px) {
  .slider-dots {
    display: none;
  }
  .slider-wrap {
    margin: 0;
    overflow: visible;
  }
}

/*  FILE UPLOAD  */
.file-zone {
  border: 2px dashed var(--border-mid);
  border-radius: var(--r-sm);
  background: var(--cream);
  transition:
    border-color 0.2s,
    background 0.2s;
  overflow: hidden;
}
.file-zone:hover,
.file-zone.drag {
  border-color: var(--sage);
  background: var(--sage-pale);
}
.file-zone-ui {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  cursor: pointer;
}
.file-zone-ico {
  width: 36px;
  height: 36px;
  background: var(--sage-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.file-zone-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.file-zone-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.4;
}
.file-browse-btn {
  background: none;
  border: none;
  color: var(--sage);
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.file-browse-btn:hover {
  color: var(--sage-deep);
}
.file-zone-hint {
  font-size: 12px;
  color: var(--ink-faint);
}
.file-hidden {
  display: none;
}
.file-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-top: 1px solid var(--border);
}
.file-item-ico {
  width: 24px;
  height: 24px;
  background: var(--sage-pale);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.file-item-ico svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.file-item-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.file-item-size {
  font-size: 12px;
  color: var(--ink-faint);
  flex-shrink: 0;
}
.file-item-rm {
  background: none;
  border: none;
  color: var(--ink-faint);
  font-size: 18px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  transition: color 0.15s;
  flex-shrink: 0;
}
.file-item-rm:hover {
  color: #c0392b;
}
.file-item-ico.is-done {
  background: rgba(0, 119, 182, 0.13);
}
.file-item-ico.is-error {
  background: rgba(192, 57, 43, 0.1);
}
.file-item-size.is-error {
  color: #c0392b;
}
.file-spin {
  width: 14px;
  height: 14px;
  border: 2px solid var(--border-mid);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: file-spin 0.7s linear infinite;
}
@keyframes file-spin {
  to { transform: rotate(360deg); }
}

/*  SUCCESS MODAL  */
.qmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 35, 64, 0);
  pointer-events: none;
  transition: background 0.35s ease;
  padding: 20px;
}
.qmodal-overlay.show {
  background: rgba(12, 35, 64, 0.6);
  pointer-events: auto;
}
.qmodal {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 36px 36px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
  transform: scale(0.86) translateY(24px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}
.qmodal-overlay.show .qmodal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.qmodal-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sage-pale);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qmodal-ring svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.qmodal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}
.qmodal-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 28px;
}
.qmodal-btn {
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 17px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  width: 100%;
}
.qmodal-btn:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
}
.qmodal-progress {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}
.qmodal-progress-bar {
  height: 100%;
  background: var(--sage);
  border-radius: 2px;
  transform-origin: left;
  animation: qProgressShrink 6s linear forwards;
}
@keyframes qProgressShrink {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

/*  PRIVACY POLICY MODAL  */
.ppmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 35, 64, 0);
  pointer-events: none;
  transition: background 0.3s ease;
  padding: 16px;
}
.ppmodal-overlay.show {
  background: rgba(12, 35, 64, 0.65);
  pointer-events: auto;
}
.ppmodal {
  background: var(--white);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(32px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 24px 80px rgba(12, 35, 64, 0.3);
}
.ppmodal-overlay.show .ppmodal {
  transform: translateY(0);
  opacity: 1;
}
.ppmodal-hd {
  background: var(--white);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  border-bottom: 1px solid var(--border, #e4eef5);
}
.ppmodal-title {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.ppmodal-close {
  background: rgba(0, 0, 0, 0.06);
  border: none;
  color: var(--ink);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.ppmodal-close:hover {
  background: rgba(0, 0, 0, 0.12);
}
.ppmodal-body {
  overflow-y: auto;
  padding: 28px 32px;
  flex: 1;
}
.ppmodal-updated {
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 24px;
}
.ppmodal-section {
  margin-bottom: 28px;
}
.ppmodal-section h3 {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 8px;
}
.ppmodal-section p,
.ppmodal-section ul {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.ppmodal-section p + p {
  margin-top: 8px;
}
.ppmodal-section ul {
  padding-left: 20px;
  margin-top: 6px;
}
.ppmodal-section ul li {
  margin-bottom: 4px;
}
.ppmodal-section a {
  color: var(--sage);
  text-decoration: underline;
}
.ppmodal-ft {
  padding: 16px 32px;
  border-top: 1px solid var(--border, #e4eef5);
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.ppmodal-btn {
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.ppmodal-btn:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .ppmodal {
    max-height: 95vh;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    align-self: flex-end;
    margin: 0 -16px;
    width: calc(100% + 32px);
  }
  .ppmodal-body {
    padding: 20px;
  }
  .ppmodal-ft {
    padding: 14px 20px;
  }
}

/* ── Cookie Banner ───────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  width: min(391px, calc(100vw - 3rem));
  background: #fffbf5;
  border-radius: 14px;
  box-shadow: 0 5px 28px rgba(12, 35, 64, 0.14);
  padding: 1.27rem 1.38rem 1.15rem;
  font-family: 'Inter', sans-serif;
}
#cookie-banner[hidden] { display: none; }
.cb-title {
  font-weight: 600;
  font-size: 1.035rem;
  color: #0c2340;
  margin: 0 0 0.4rem;
}
.cb-desc {
  font-size: 0.92rem;
  color: rgba(12, 35, 64, 0.7);
  margin: 0 0 0.98rem;
  line-height: 1.45;
}
.cb-desc a { color: #0077b6; text-decoration: underline; }
.cb-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}
.cb-btn {
  flex: 1 1 auto;
  border: none;
  border-radius: 7px;
  padding: 0.52rem 0.69rem;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.cb-btn--primary {
  background: #f4a800;
  color: #0c2340;
}
.cb-btn--primary:hover { background: #e09700; }
.cb-btn--secondary {
  background: transparent;
  color: #0077b6;
  border: 1.5px solid #0077b6;
}
.cb-btn--secondary:hover { background: rgba(0, 119, 182, 0.08); }
