/* UAQFTZ Value Added Services - clean page stylesheet */
:root {
  --orange: #ff5f1f;
  --orange-dark: #d94b12;
  --teal: #0f819a;
  --blue-950: #062b3a;
  --blue-900: #073746;
  --cinema-950: #021724;
  --cinema-900: #052838;
  --bronze: #c98543;
  --ink: #101827;
  --muted: #667085;
  --line: rgba(16, 24, 39, 0.12);
  --soft: #eef6f8;
  --white: #fff;
  --shadow: 0 24px 70px rgba(3, 20, 31, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: #f7fbfb;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 10%, rgba(124, 209, 228, 0.16), transparent 30%),
    radial-gradient(circle at 100% 42%, rgba(255, 95, 31, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(2, 23, 36, 0.02), rgba(2, 23, 36, 0));
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(100% - 56px, 1320px); margin-inline: auto; }
.lead-honeypot, #urgency, .hero-social { display: none !important; }

h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  font-family: "Inter Tight", "Inter", sans-serif;
  letter-spacing: -0.045em;
}
.label, .tagline, .hero-eyebrow-label, .form-heading-label, .process-step-label, .authority-card-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.btn, .nav-apply, .form-submit, .final-phone, .directory-cta, .faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}
.btn:hover, .nav-apply:hover, .form-submit:hover, .final-phone:hover, .directory-cta:hover, .faq-cta:hover { transform: translateY(-2px); }
.btn:active, .nav-apply:active, .form-submit:active, .final-phone:active, .directory-cta:active, .faq-cta:active { transform: translateY(0) scale(0.99); }
.btn-primary, .nav-apply, .form-submit {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(255, 95, 31, 0.26);
}
.btn-primary:hover, .nav-apply:hover, .form-submit:hover { background: var(--orange-dark); }
.btn-outline, .final-phone, .directory-cta, .faq-cta {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(16, 24, 39, 0.16);
}

#nav {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 20;
}
.nav-inner {
  width: min(100% - 72px, 1440px);
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 26px 68px rgba(2, 23, 36, 0.28);
  backdrop-filter: blur(18px);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-links a {
  color: #172033;
  font-size: 15px;
  font-weight: 800;
  transition: color 180ms var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-apply { min-height: 52px; min-width: 138px; padding: 0 24px; }
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(16, 24, 39, 0.13);
  border-radius: 999px;
  background: var(--white);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--ink);
}
.nav-mobile {
  position: absolute;
  top: calc(100% + 10px);
  left: 18px;
  right: 18px;
  display: none;
  padding: 14px;
  border: 1px solid rgba(16, 24, 39, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}
.nav-mobile.open { display: grid; gap: 8px; }
.nav-mobile a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 780;
}
.nav-mobile a:hover, .nav-mobile a.active { background: #fff4ee; color: var(--orange); }

#hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding: 140px 0 64px;
  background:
    radial-gradient(circle at 22% 46%, rgba(255, 95, 31, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(2, 23, 36, 0.98) 0%, rgba(3, 33, 49, 0.92) 43%, rgba(3, 42, 55, 0.44) 100%),
    linear-gradient(180deg, rgba(2, 23, 36, 0.18), rgba(2, 23, 36, 0.78)),
    url("../assets/value-added-services-head.webp") center right / cover no-repeat,
    var(--cinema-950);
  color: var(--white);
}
#hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(2, 23, 36, 0.86));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 490px);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}
.hero-copy { max-width: 760px; padding-left: clamp(0px, 2.8vw, 42px); }
.hero-eyebrow { margin-bottom: 28px; }
.hero-eyebrow-line { display: none; }
#hero h1 {
  color: var(--white);
  font-size: clamp(60px, 5.7vw, 92px);
  font-weight: 760;
  line-height: 0.94;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}
.hero-h1-line, .hero-h1-accent { display: block; }
.hero-description {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(248, 252, 252, 0.82);
  font-size: clamp(18px, 1.32vw, 22px);
  font-weight: 500;
  line-height: 1.68;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}
.hero-actions .btn {
  min-width: 188px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 16px;
}
.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.96);
}
.hero-form-stack { width: 100%; max-width: 520px; }
.form-card {
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-top: 4px solid var(--orange);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.98);
  color: var(--ink);
  box-shadow: 0 36px 90px rgba(1, 11, 18, 0.42);
}
.form-card-body { padding: 24px 30px; }
.form-heading {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(16, 24, 39, 0.1);
}
.form-title {
  margin-top: 8px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 760;
  line-height: 1.05;
}
.form-heading p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.hero-form-grid { display: grid; gap: 10px; }
.form-field { position: relative; }
.field-label {
  display: block;
  margin-bottom: 7px;
  color: rgba(16, 24, 39, 0.72);
  font-size: 12px;
  font-weight: 800;
}
.field-input, .phone-code-trigger {
  width: 100%;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(16, 24, 39, 0.17);
  border-radius: 10px;
  outline: 0;
  background: #fbfcfd;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}
select.field-input {
  padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(16, 24, 39, 0.62) 50%),
    linear-gradient(135deg, rgba(16, 24, 39, 0.62) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.field-input:focus, .phone-code-trigger:focus {
  border-color: rgba(255, 95, 31, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 95, 31, 0.12);
}
.field-input::placeholder { color: rgba(16, 24, 39, 0.42); }
.field-textarea { min-height: 62px; padding-top: 12px; resize: vertical; }
.phone-row { display: grid; grid-template-columns: 124px minmax(0, 1fr); gap: 10px; }
.phone-code-select { position: relative; }
.phone-code-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-inline: 12px;
  cursor: pointer;
}
.phone-code-trigger-text { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.phone-code-selected-flag, .phone-code-option-flag { flex: 0 0 auto; border-radius: 2px; }
.phone-code-chevron { width: 16px; height: 16px; flex: 0 0 auto; }
.phone-code-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: min(320px, calc(100vw - 42px));
  max-height: 260px;
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(16, 24, 39, 0.13);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(16, 24, 39, 0.18);
}
.phone-code-option {
  width: 100%;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.phone-code-option:hover { background: #fff4ee; }
.phone-code-option-name { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.phone-code-option-code { color: var(--muted); font-weight: 700; }
.field-error {
  display: none;
  margin-top: 6px;
  color: #b42318;
  font-size: 12px;
  font-weight: 750;
}
.form-field.error .field-error { display: block; }
.form-field.error .field-input { border-color: rgba(180, 35, 24, 0.62); }
.form-message {
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
}
.form-message.show { display: block; }
.form-message.success { border: 1px solid rgba(18, 137, 76, 0.18); background: #ecfdf3; color: #027a48; }
.form-message.error { border: 1px solid rgba(180, 35, 24, 0.2); background: #fef3f2; color: #b42318; }
.form-submit { width: 100%; min-height: 52px; margin-top: 2px; border: 0; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: 0.72; }
.form-reassurance {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  color: rgba(16, 24, 39, 0.56);
  font-size: 12.5px;
}
.form-reassurance svg, .form-reassurance i { width: 18px; height: 18px; color: var(--muted); }

#trust {
  position: relative;
  z-index: 2;
  padding: 0 0 64px;
  background:
    linear-gradient(180deg, var(--cinema-950) 0%, #eaf6f8 1%, #fbfdfd 100%);
}
.trust-inner {
  transform: translateY(-36px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  max-width: 1160px;
  min-height: 116px;
  margin: 0 auto -36px;
  border: 1px solid rgba(201, 133, 67, 0.2);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 34px 90px rgba(3, 20, 31, 0.2);
}
.trust-item {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 116px;
  padding: 16px 22px 18px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  text-align: center;
  line-height: 1.2;
}
.trust-item + .trust-item { border-left: 1px solid rgba(16, 24, 39, 0.12); }
.trust-item svg, .trust-item i { width: 34px; height: 34px; color: var(--teal); filter: drop-shadow(0 8px 18px rgba(15, 129, 154, 0.16)); }
.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

#service-finder {
  padding: 42px 0 96px;
  background:
    radial-gradient(circle at 84% 32%, rgba(15, 129, 154, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfdfd 0%, #f4fafb 100%);
}
.service-finder-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(540px, 1fr);
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(46px, 5vw, 64px) clamp(42px, 5vw, 60px);
  border: 1px solid rgba(16, 24, 39, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(115deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.94) 56%, rgba(237, 250, 252, 0.86) 100%);
  box-shadow: 0 34px 92px rgba(3, 20, 31, 0.13);
}
.service-finder-copy h2, .services-header h2, .value-layout h2, .directory-copy h2, .outcomes-grid h2, .process-header h2, .faq-header h2, .final-cta-copy h2 {
  color: var(--ink);
  font-weight: 760;
  line-height: 1;
}
.service-finder-copy h2 {
  max-width: 520px;
  margin-top: 14px;
  font-size: clamp(38px, 3.5vw, 54px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}
.service-finder-copy p {
  max-width: 470px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
}
.service-finder-copy::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 30px;
  border-radius: 999px;
  background: var(--orange);
}
.service-finder-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-finder-actions a {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  column-gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 24, 39, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 820;
  box-shadow: 0 12px 30px rgba(3, 20, 31, 0.06);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.service-finder-actions a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 95, 31, 0.35);
  box-shadow: 0 18px 36px rgba(16, 24, 39, 0.1);
}
.service-finder-actions a svg, .service-finder-actions a i { width: 34px; height: 34px; flex: 0 0 auto; color: var(--teal); }
.service-finder-actions a span {
  min-width: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.12;
  text-wrap: balance;
}
.service-finder-actions a::after {
  content: "->";
  position: static;
  justify-self: end;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

#value {
  padding: 66px 0;
  background:
    linear-gradient(90deg, rgba(15, 129, 154, 0.055), transparent 48%),
    #fbfdfd;
}
.value-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
  padding-block: 34px;
  border-top: 1px solid rgba(16, 24, 39, 0.09);
  border-bottom: 1px solid rgba(16, 24, 39, 0.09);
}
.value-layout h2 { max-width: 430px; margin-top: 10px; font-size: clamp(30px, 3vw, 42px); }
.value-layout p { color: var(--muted); font-size: 17px; line-height: 1.7; }

#services {
  padding: 98px 0 104px;
  background:
    radial-gradient(circle at 10% 0%, rgba(15, 129, 154, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 95, 31, 0.08), transparent 24%),
    linear-gradient(180deg, #edf7f9 0%, #f6fbfb 100%);
}
.section-header, .services-header { max-width: 900px; margin: 0 auto 44px; text-align: center; }
.services-header h2 { max-width: 860px; margin: 12px auto 0; font-size: clamp(40px, 4.3vw, 66px); }
.services-header p {
  max-width: 690px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(16, 24, 39, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 249, 0.96));
  box-shadow: 0 22px 58px rgba(3, 20, 31, 0.1);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 31, 0.28);
  box-shadow: 0 34px 72px rgba(3, 20, 31, 0.16);
}
.service-card:first-child, .service-card:nth-child(6) { grid-column: span 2; }
.service-card svg, .service-card i {
  width: 50px;
  height: 50px;
  padding: 11px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 95, 31, 0.13);
  border-radius: 50%;
  background: rgba(255, 95, 31, 0.075);
  color: var(--orange);
}
.service-card:nth-child(2n) svg, .service-card:nth-child(2n) i {
  border-color: rgba(15, 129, 154, 0.14);
  background: rgba(15, 129, 154, 0.085);
  color: var(--teal);
}
.service-card h3 { color: var(--ink); font-size: 20px; font-weight: 760; line-height: 1.12; }
.service-card:first-child h3, .service-card:nth-child(6) h3 { max-width: 410px; font-size: 26px; }
.service-card p { max-width: 58ch; margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-decision { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(16, 24, 39, 0.1); }
.service-decision div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 11px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(16, 24, 39, 0.075);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.service-decision div:last-child { border-bottom: 0; }
.service-decision span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 850;
}
.service-card-cta::after { content: "->"; }

#directory { padding: 74px 0 80px; background: var(--soft); }
#directory {
  background:
    linear-gradient(180deg, #f6fbfb 0%, #fbfdfd 100%);
}
.directory-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(380px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.directory-copy h2 { max-width: 360px; margin-top: 10px; font-size: clamp(30px, 3vw, 42px); }
.directory-copy p { max-width: 420px; margin-top: 12px; color: var(--muted); line-height: 1.65; }
.directory-cta { min-height: 44px; margin-top: 22px; padding: 0 18px; font-size: 14px; }
.directory-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 24, 39, 0.08);
}
.directory-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(16, 24, 39, 0.09);
  border-radius: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}
.directory-row span { color: var(--orange); }
.directory-row svg, .directory-row i { width: 19px; height: 19px; }

#outcomes { padding: 88px 0 92px; background: var(--white); }
#outcomes {
  background:
    radial-gradient(circle at 82% 12%, rgba(201, 133, 67, 0.08), transparent 24%),
    #fbfdfd;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.outcomes-grid h2 { max-width: 640px; margin-top: 10px; font-size: clamp(34px, 3.5vw, 54px); }
.outcomes-intro { max-width: 650px; margin-top: 16px; color: var(--muted); font-size: 16.5px; line-height: 1.7; }
.reason-list { padding: 0; margin: 32px 0 0; list-style: none; border-top: 1px solid rgba(16, 24, 39, 0.11); }
.reason-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(16, 24, 39, 0.11);
}
.reason-num {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff4ee;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}
.reason-item h3 { color: var(--ink); font-size: 18px; font-weight: 760; }
.reason-item p { max-width: 62ch; margin-top: 5px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.authority-card {
  padding: 34px;
  border: 1px solid rgba(16, 24, 39, 0.11);
  border-top: 3px solid var(--teal);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.authority-year {
  margin-top: 12px;
  color: var(--teal);
  font-family: "Inter Tight", sans-serif;
  font-size: 64px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.05em;
}
.authority-title { margin-top: 10px; color: var(--ink); font-size: 21px; font-weight: 820; line-height: 1.2; }
.authority-card p { margin-top: 12px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.authority-proof-list { margin-top: 24px; border-top: 1px solid rgba(16, 24, 39, 0.11); }
.authority-proof {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(16, 24, 39, 0.09);
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}
.authority-proof span { color: var(--orange); font-weight: 850; }

#process {
  padding: 100px 0 108px;
  background:
    radial-gradient(circle at 82% 14%, rgba(124, 209, 228, 0.2), transparent 28%),
    radial-gradient(circle at 18% 68%, rgba(255, 95, 31, 0.18), transparent 24%),
    linear-gradient(135deg, #021724 0%, #052838 58%, #084c5f 100%);
}
.process-header { max-width: 780px; margin: 0 auto 52px; text-align: center; }
.process-header h2 { margin-top: 12px; color: var(--white); font-size: clamp(34px, 3.5vw, 54px); }
.process-header p { max-width: 560px; margin: 14px auto 0; color: rgba(255, 255, 255, 0.72); }
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 30px 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 38px 96px rgba(1, 11, 18, 0.34);
}
.process-line { position: absolute; top: 72px; left: 10%; right: 10%; height: 1px; background: rgba(255, 255, 255, 0.32); }
.process-step { position: relative; z-index: 1; padding: 0 22px; }
.process-step + .process-step { border-left: 1px solid rgba(255, 255, 255, 0.14); }
.process-node {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 0 0 9px rgba(255, 95, 31, 0.16), 0 0 30px rgba(255, 95, 31, 0.34);
}
.process-icon { display: none; }
.process-step-label { color: rgba(255, 255, 255, 0.74); }
.process-step h3 { margin-top: 8px; color: var(--white); font-size: 19px; font-weight: 760; letter-spacing: -0.025em; }
.process-step p { margin-top: 8px; color: rgba(255, 255, 255, 0.68); font-size: 14px; line-height: 1.6; }

#faq { padding: 88px 0 92px; background: #ffffff; }
#faq {
  background:
    linear-gradient(180deg, #fbfdfd 0%, #ffffff 100%);
}
.faq-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.faq-header h2 { max-width: 360px; margin-top: 10px; font-size: clamp(32px, 3vw, 48px); }
.faq-header p { max-width: 380px; margin-top: 14px; color: var(--muted); line-height: 1.65; }
.faq-help-note {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 95, 31, 0.18);
  border-radius: 12px;
  background: #fff4ee;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}
.faq-cta { min-height: 44px; margin-top: 18px; padding: 0 18px; font-size: 14px; }
.faq-list {
  padding: 10px;
  border: 1px solid rgba(16, 24, 39, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 24, 39, 0.08);
}
.faq-item { overflow: hidden; margin-bottom: 8px; border: 1px solid rgba(16, 24, 39, 0.08); border-radius: 11px; }
.faq-item:last-child { margin-bottom: 0; }
.faq-item.open { background: #fffaf7; border-color: rgba(255, 95, 31, 0.18); }
.faq-q {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-q-text { font-size: 15px; font-weight: 760; }
.faq-chevron { flex: 0 0 auto; color: var(--orange); transition: transform 220ms var(--ease); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 260ms var(--ease); }
.faq-a-inner { padding: 0 18px 18px; color: var(--muted); font-size: 14px; line-height: 1.65; }

#final-cta {
  padding: 82px 0 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 46%, var(--cinema-950) 46%, var(--cinema-950) 100%);
}
#final-cta .final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  gap: 42px;
  align-items: center;
  max-width: 1120px;
  padding: 44px 48px;
  border: 1px solid rgba(16, 24, 39, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(255, 253, 249, 0.98) 0%, #ffffff 68%, rgba(237, 250, 252, 0.9) 100%);
  box-shadow: 0 34px 88px rgba(3, 20, 31, 0.18);
}
.final-cta-copy h2 { max-width: 430px; margin-top: 10px; font-size: clamp(30px, 3vw, 44px); }
.final-cta-copy p { max-width: 470px; margin-top: 12px; color: var(--muted); line-height: 1.65; }
.final-eligibility {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 24, 39, 0.1);
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
}
.final-eligibility svg, .final-eligibility i { width: 18px; height: 18px; color: var(--teal); }
.final-action-panel {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(170px, 0.8fr);
  gap: 14px;
}
.final-action-panel .btn, .final-phone { min-height: 56px; padding: 0 22px; }
.final-trust {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid rgba(16, 24, 39, 0.1);
  border-radius: 12px;
  background: #fbfcfd;
  color: var(--muted);
  font-size: 13px;
}
.final-trust strong { color: #eca23b; letter-spacing: 0.05em; }

footer {
  padding: 40px 0;
  border-top: 3px solid var(--orange);
  background:
    radial-gradient(circle at 90% 8%, rgba(124, 209, 228, 0.16), transparent 30%),
    linear-gradient(135deg, var(--cinema-950), var(--cinema-900));
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-logo-name { color: var(--white); font-weight: 800; }
.footer-logo-sub { margin-top: 3px; color: rgba(255, 255, 255, 0.76); font-size: 12.5px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.86); font-size: 13px; font-weight: 650; }
.footer-links svg, .footer-links i { width: 15px; height: 15px; }

@media (max-width: 1180px) {
  .container { width: min(100% - 42px, 1320px); }
  .nav-inner { width: min(100% - 42px, 1440px); }
  .hero-grid, .service-finder-panel, .value-layout, .directory-layout, .outcomes-grid, .faq-wrap, #final-cta .final-cta-inner { grid-template-columns: 1fr; }
  .hero-copy { padding-left: 0; }
  .hero-form-stack { max-width: 620px; }
  .service-finder-actions, .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card:first-child, .service-card:nth-child(6) { grid-column: span 2; }
  .final-action-panel { max-width: 620px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1320px); }
  #nav { top: 14px; }
  .nav-inner {
    width: min(100% - 24px, 1440px);
    min-height: 64px;
    gap: 14px;
    padding: 0 14px;
  }
  .nav-inner img { width: 132px; height: auto !important; }
  .nav-links { display: none; }
  .hamburger { display: grid; }
  .nav-apply { min-width: 104px; min-height: 44px; padding: 0 16px; font-size: 14px; white-space: nowrap; }

  #hero {
    min-height: auto;
    padding: 100px 0 46px;
    background:
      linear-gradient(180deg, rgba(4, 31, 44, 0.94) 0%, rgba(5, 44, 58, 0.9) 58%, rgba(5, 50, 68, 0.82) 100%),
      url("../assets/value-added-services-head.webp") center / cover no-repeat,
      var(--blue-950);
  }
  .hero-grid { gap: 32px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-eyebrow-label { font-size: 11px; }
  #hero h1 { max-width: 10ch; font-size: clamp(42px, 11vw, 56px); line-height: 0.98; }
  .hero-description { margin-top: 22px; font-size: 16px; }
  .hero-actions { gap: 12px; margin-top: 28px; }
  .hero-actions .btn { flex: 1 1 150px; min-width: 0; min-height: 50px; padding-inline: 16px; font-size: 14px; }
  .form-card { border-radius: 18px; }
  .form-card-body { padding: 20px 18px; }
  .form-title { font-size: 24px; }
  .phone-row { grid-template-columns: 112px minmax(0, 1fr); }
  .field-input, .phone-code-trigger { min-height: 46px; }

  #trust { padding-bottom: 42px; }
  .trust-inner {
    transform: translateY(-24px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    margin-bottom: -24px;
    border-radius: 16px;
  }
  .trust-item { min-height: 96px; padding: 16px 14px; font-size: 14px; }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid rgba(16, 24, 39, 0.12); }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(16, 24, 39, 0.12); }
  .trust-item svg, .trust-item i { width: 32px; height: 32px; }
  .trust-item strong { font-size: 20px; }

  #service-finder, #value, #services, #directory, #outcomes, #process, #faq { padding-top: 56px; padding-bottom: 60px; }
  .service-finder-panel, .authority-card, #final-cta .final-cta-inner { padding: 24px 20px; border-radius: 16px; }
  .service-finder-copy h2, .services-header h2, .value-layout h2, .directory-copy h2, .outcomes-grid h2, .process-header h2, .faq-header h2, .final-cta-copy h2 { font-size: clamp(31px, 8.6vw, 42px); }
  .service-finder-actions, .services-grid, .directory-board { grid-template-columns: 1fr; }
  .service-finder-actions a {
    min-height: 76px;
    grid-template-columns: 30px minmax(0, 1fr) 18px;
    padding: 16px;
  }
  .service-card, .service-card:first-child, .service-card:nth-child(6) { grid-column: auto; padding: 22px 18px; }
  .service-card:first-child h3, .service-card:nth-child(6) h3 { font-size: 24px; }
  .service-decision div, .authority-proof { grid-template-columns: 1fr; gap: 5px; }
  .directory-layout, .outcomes-grid, .faq-wrap { gap: 28px; }

  .process-track { grid-template-columns: 1fr; padding: 28px 24px; }
  .process-line { top: 48px; bottom: 48px; left: 51px; right: auto; width: 1px; height: auto; }
  .process-step { min-height: 0; padding: 0 0 28px 72px; }
  .process-step + .process-step { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 28px; }
  .process-node { position: absolute; left: 0; top: 0; width: 52px; height: 52px; }
  .process-step + .process-step .process-node { top: 28px; }

  #final-cta { padding-top: 46px; }
  .final-action-panel { grid-template-columns: 1fr; }
  .footer-inner, .footer-links { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 22px, 1320px); }
  .nav-right { gap: 8px; }
  .nav-inner img { width: 118px; }
  .nav-apply { min-width: 96px; padding-inline: 12px; }
  .hamburger { width: 42px; height: 42px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; flex-basis: auto; }
  .phone-row { grid-template-columns: 106px minmax(0, 1fr); }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(3), .trust-item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(16, 24, 39, 0.12);
  }
  .trust-item:first-child { border-top: 0; }
  .final-trust { display: grid; }
}

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