:root {
  --ink: #101216;
  --muted: #5d6572;
  --line: #e7eaf0;
  --line-strong: #d3dae5;
  --line-blue: rgba(18, 61, 115, 0.24);
  --soft: #f7f8fb;
  --white: #ffffff;
  --blue: #123d73;
  --blue-dark: #0b2c55;
  --shadow: 0 22px 70px rgba(13, 22, 38, 0.12);
  --shadow-card: 0 18px 42px rgba(13, 22, 38, 0.085);
  --shadow-card-strong: 0 24px 58px rgba(13, 22, 38, 0.13);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1160px;
  --type-xs: 0.82rem;
  --type-sm: 0.94rem;
  --type-base: 1rem;
  --type-md: 1.08rem;
  --type-lg: 1.18rem;
  --section-gap: 38px;
  --card-pad: 28px;
  --card-copy: 0.98rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: var(--type-base);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 234, 240, 0.82);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 166px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #303844;
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1;
}

.site-nav a,
.header-cta,
.btn,
.service-card,
.step-card,
.review-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 19px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 18, 22, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 118px 0 112px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.78) 0%, rgba(8, 13, 22, 0.58) 38%, rgba(8, 13, 22, 0.20) 68%, rgba(8, 13, 22, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 13, 22, 0.18), rgba(8, 13, 22, 0.24)),
    url("assets/images/hero-signing.webp") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%);
}

.hero-grid {
  position: relative;
  min-height: 490px;
  display: grid;
  grid-template-columns: minmax(0, 660px);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  line-height: 1.65;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 5.45vw, 5.28rem);
  line-height: 0.96;
  letter-spacing: -0.066em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.55vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.043em;
}

h3 {
  margin-bottom: 10px;
  font-size: var(--type-lg);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.26vw, 1.15rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-copy > *:last-child,
.service-card > *:last-child,
.step-card > *:last-child,
.review-card > *:last-child,
.cta-panel > *:last-child,
.contact-copy > *:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(18, 61, 115, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 18px 36px rgba(18, 61, 115, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 61, 115, 0.28);
  box-shadow: 0 12px 28px rgba(13, 22, 38, 0.08);
}

.btn-secondary.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.micro-trust {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--type-sm);
  font-weight: 720;
  line-height: 1.45;
}

.objection-line {
  margin: 9px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 820;
  line-height: 1.45;
}

.hero .eyebrow {
  color: #d8e8ff;
}

.hero .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.hero .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-grid div {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.trust-grid div:first-child {
  padding-left: 0;
}

.trust-grid div:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 7px;
  font-size: 0.97rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
}

.section-heading {
  max-width: 720px;
  margin-bottom: var(--section-gap);
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: var(--type-md);
  line-height: 1.62;
}

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

.service-card,
.step-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.service-card {
  min-height: 190px;
  padding: var(--card-pad);
}

.service-card p,
.step-card p,
.review-card p,
.area-panel p,
.contact-copy p,
.cta-panel p {
  color: var(--muted);
  font-size: var(--card-copy);
  line-height: 1.66;
}

.service-card:hover,
.step-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 61, 115, 0.2);
  box-shadow: 0 18px 44px rgba(13, 22, 38, 0.08);
}

.service-card-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card-dark a {
  display: inline-block;
  margin-top: 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
  border-bottom: 2px solid var(--blue);
}

.process {
  background: var(--soft);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: start;
}

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

.step-card {
  padding: var(--card-pad);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(18, 61, 115, 0.15);
  border-radius: 999px;
  color: var(--blue-dark);
  background: #f4f8fd;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.005em;
}

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

.review-card {
  position: relative;
  padding: 30px;
}

.review-card::before {
  content: "“";
  display: block;
  margin-bottom: 14px;
  color: rgba(18, 61, 115, 0.28);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.review-card p {
  margin-bottom: 22px;
  font-size: var(--card-copy);
  line-height: 1.66;
}

.review-card strong {
  color: var(--ink);
  font-size: var(--type-sm);
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.service-area {
  padding-top: 0;
}

.area-panel {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 50px;
  align-items: center;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff, #f7f9fc);
}

.area-panel h2 {
  max-width: 720px;
}

.area-panel p {
  margin-bottom: 0;
}

.final-cta {
  padding: 76px 0;
  color: var(--white);
  background: var(--ink);
}

.cta-panel {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-panel .eyebrow,
.final-cta .eyebrow {
  color: #88a7d2;
}

.cta-panel h2 {
  margin-bottom: 14px;
}

.cta-panel p {
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.74);
}

.centered-actions {
  justify-content: center;
  margin-top: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 56px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-details {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.contact-details a {
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 14px 15px;
  background: #fbfcfe;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(18, 61, 115, 0.55);
  box-shadow: 0 0 0 4px rgba(18, 61, 115, 0.09);
}

.form-btn {
  width: 100%;
  margin-top: 10px;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: 184px 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand img {
  width: 164px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-sm);
  line-height: 1.58;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
  font-size: 0.91rem;
  font-weight: 820;
  line-height: 1.2;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.simple-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff, #f3f6fb);
}

.thank-you-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.thank-you-card {
  width: min(680px, 100%);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card img {
  width: 220px;
  margin: 0 auto 34px;
}

.thank-you-card h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.thank-you-card p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--soft);
  }

  .header-cta {
    display: none;
  }

  .brand img {
    width: 148px;
  }

  .process-grid,
  .contact-grid,
  .area-panel {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .contact-grid {
    gap: 38px;
  }

  .hero {
    min-height: 660px;
    padding: 88px 0 86px;
    background-position: center center;
  }

  .hero-grid {
    min-height: 450px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .trust-grid,
  .card-grid,
  .steps,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(3),
  .trust-grid div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .contact-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .section {
    padding: 66px 0;
  }

  :root {
    --section-gap: 28px;
    --card-pad: 24px;
    --card-copy: 0.97rem;
  }

  .hero {
    min-height: 640px;
    padding: 78px 0 74px;
    background:
      linear-gradient(90deg, rgba(8, 13, 22, 0.84) 0%, rgba(8, 13, 22, 0.68) 48%, rgba(8, 13, 22, 0.24) 100%),
      linear-gradient(180deg, rgba(8, 13, 22, 0.16), rgba(8, 13, 22, 0.34)),
      url("assets/images/hero-signing.webp") 58% center / cover no-repeat;
  }

  .hero-grid {
    min-height: 488px;
  }

  h1 {
    font-size: clamp(2.38rem, 11vw, 3.45rem);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  h2 {
    font-size: clamp(1.78rem, 8.2vw, 2.38rem);
    line-height: 1.06;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .section-heading {
    margin-bottom: var(--section-gap);
  }

  .section-heading p:not(.eyebrow) {
    font-size: 0.99rem;
    line-height: 1.6;
  }

  h3 {
    font-size: 1.1rem;
  }

  .objection-line {
    font-size: 0.91rem;
    line-height: 1.46;
  }

  .hero-actions,
  .centered-actions {
    align-items: stretch;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .trust-grid,
  .card-grid,
  .steps,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:first-child,
  .trust-grid div:last-child {
    padding: 19px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .trust-grid div:first-child {
    border-top: 0;
  }

  .proof-row {
    margin-top: -10px;
  }

  .proof-row span {
    width: 100%;
    justify-content: center;
  }

  .service-card,
  .step-card,
  .review-card,
  .contact-form,
  .area-panel,
  .thank-you-card {
    padding: var(--card-pad);
    border-radius: 22px;
  }

  .area-panel {
    gap: 22px;
  }

  .final-cta {
    padding: 64px 0;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }
}

@media (hover: none) {
  .service-card:hover,
  .step-card:hover,
  .review-card:hover,
  .btn:hover,
  .header-cta:hover {
    transform: none;
  }

  .btn:active,
  .header-cta:active {
    transform: scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Visual Depth & Section Weight Pass */
.trust-strip {
  position: relative;
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.trust-grid {
  gap: 14px;
  padding: 20px 0;
}

.trust-grid div,
.trust-grid div:first-child,
.trust-grid div:last-child {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(13, 22, 38, 0.045);
}

.service-card,
.step-card,
.review-card {
  position: relative;
  overflow: hidden;
  border-color: var(--line-strong);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow-card);
}

.service-card::before,
.step-card::before,
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(18, 61, 115, 0.12));
  opacity: 0.72;
}

.review-card::after {
  content: "\201C";
  display: block;
  position: relative;
  width: max-content;
  margin-bottom: 12px;
  color: rgba(18, 61, 115, 0.22);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.review-card::before {
  content: "";
  margin-bottom: 0;
  font-size: 0;
  line-height: 0;
}

.service-card:hover,
.step-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-blue);
  box-shadow: var(--shadow-card-strong);
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 61, 115, 0.055), transparent 34%),
    linear-gradient(180deg, #f8fafd 0%, #f3f6fb 100%);
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), rgba(18, 61, 115, 0.12));
}

.area-panel {
  border-color: var(--line-strong);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.98)),
    radial-gradient(circle at 92% 14%, rgba(18, 61, 115, 0.09), transparent 28%);
  box-shadow: var(--shadow-card);
}

.cta-panel {
  max-width: 840px;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-form {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: var(--shadow-card-strong);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: var(--line-strong);
  background: #ffffff;
}

.service-card-dark {
  background: linear-gradient(145deg, var(--ink), #18202c);
  border-color: rgba(18, 61, 115, 0.36);
  box-shadow: 0 22px 54px rgba(13, 22, 38, 0.2);
}

@media (max-width: 980px) {
  .trust-grid div:nth-child(2),
  .trust-grid div:nth-child(3),
  .trust-grid div:nth-child(4) {
    border: 1px solid var(--line-strong);
  }
}

@media (max-width: 640px) {
  .trust-grid {
    gap: 12px;
    padding: 16px 0;
  }

  .trust-grid div,
  .trust-grid div:first-child,
  .trust-grid div:last-child {
    padding: 18px;
    border: 1px solid var(--line-strong);
  }

  .cta-panel {
    padding: var(--card-pad);
    border-radius: 22px;
  }
}

/* Contact Upgrade Pass */
.contact {
  position: relative;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 9% 14%, rgba(18, 61, 115, 0.075), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.contact-panel {
  position: relative;
  padding: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 254, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(18, 61, 115, 0.08), transparent 32%);
  box-shadow: 0 28px 80px rgba(13, 22, 38, 0.105);
}

.contact-panel::before {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), rgba(18, 61, 115, 0.08));
}

.contact-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 46px;
  align-items: stretch;
}

.contact-copy {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 12px 0;
}

.contact-copy h2 {
  max-width: 430px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 480px;
}

.contact-assurance {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.contact-assurance div {
  position: relative;
  padding: 16px 18px 16px 20px;
  border: 1px solid rgba(18, 61, 115, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(13, 22, 38, 0.045);
}

.contact-assurance div::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 999px;
  background: var(--blue);
}

.contact-assurance strong,
.contact-assurance span {
  display: block;
}

.contact-assurance strong {
  margin-bottom: 4px;
  font-size: 0.94rem;
  line-height: 1.25;
  letter-spacing: -0.012em;
}

.contact-assurance span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(18, 61, 115, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(13, 22, 38, 0.04);
}

.form-heading {
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-strong);
}

.form-heading h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.contact-form {
  gap: 11px;
  padding: 36px;
  border-width: 1px;
  border-color: rgba(18, 61, 115, 0.22);
  box-shadow: 0 30px 78px rgba(13, 22, 38, 0.15);
}

.contact-form label {
  margin-top: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: #cfd7e3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-btn {
  margin-top: 14px;
  min-height: 56px;
}

.site-footer {
  border-top-color: var(--line-strong);
}

@media (max-width: 980px) {
  .contact {
    padding: 78px 0 72px;
  }

  .contact-panel {
    padding: 30px;
    border-radius: 28px;
  }

  .contact-panel::before {
    left: 30px;
    right: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-copy h2,
  .contact-copy > p:not(.eyebrow) {
    max-width: 680px;
  }

  .contact-assurance {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .contact {
    padding: 64px 0 60px;
  }

  .contact-panel {
    width: min(100% - 30px, var(--container));
    padding: 22px;
    border-radius: 24px;
  }

  .contact-panel::before {
    left: 22px;
    right: 22px;
  }

  .contact-assurance,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details a {
    width: 100%;
    justify-content: center;
  }

  .contact-form {
    padding: 22px;
  }
}

/* Contact Alignment Pass */
.contact {
  padding-bottom: 74px;
}

.contact-panel {
  padding: 44px;
}

.contact-grid {
  align-items: start;
  gap: 48px;
}

.contact-copy {
  justify-content: flex-start;
  padding: 6px 0 0;
}

.contact-copy .eyebrow {
  margin-bottom: 14px;
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-copy > p:not(.eyebrow) {
  margin-bottom: 0;
}

.contact-assurance {
  margin-top: 30px;
}

.contact-assurance div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details {
  margin-top: 24px;
}

.contact-details a {
  justify-content: center;
  text-align: center;
}

.contact-form {
  align-self: start;
  gap: 10px;
  padding: 34px;
}

.form-heading {
  margin-bottom: 10px;
}

.contact-form label {
  margin-top: 2px;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.form-btn {
  margin-top: 12px;
}

.site-footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 980px) {
  .contact-panel {
    padding: 32px;
  }

  .contact-grid {
    gap: 34px;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-assurance div {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .contact {
    padding-bottom: 56px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-copy h2 {
    margin-bottom: 14px;
  }

  .contact-assurance {
    margin-top: 24px;
  }

  .contact-details {
    margin-top: 22px;
  }

  .contact-form {
    padding: 22px;
  }
}

/* Visual Authority & Hierarchy Pass */
.hero {
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.76) 0%, rgba(8, 13, 22, 0.55) 38%, rgba(8, 13, 22, 0.18) 68%, rgba(8, 13, 22, 0.05) 100%),
    linear-gradient(180deg, rgba(8, 13, 22, 0.12), rgba(8, 13, 22, 0.22)),
    url("assets/images/hero-signing.webp") center center / cover no-repeat;
}

.hero::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%);
}

.trust-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.trust-grid {
  gap: 12px;
  padding: 18px 0;
}

.trust-grid div,
.trust-grid div:first-child,
.trust-grid div:last-child {
  padding: 20px 22px;
  border-color: rgba(211, 218, 229, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.trust-grid strong {
  color: var(--ink);
}

.services {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #f8fafd 100%);
}

.service-card::before,
.step-card::before,
.review-card::before {
  display: none;
}

.service-card,
.step-card,
.review-card {
  border-color: rgba(211, 218, 229, 0.9);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(13, 22, 38, 0.065);
}

.service-card:hover,
.step-card:hover,
.review-card:hover {
  border-color: rgba(18, 61, 115, 0.26);
  box-shadow: 0 24px 54px rgba(13, 22, 38, 0.115);
}

.service-card-dark {
  border-color: rgba(18, 61, 115, 0.44);
  background:
    linear-gradient(145deg, #101216 0%, #161d29 100%);
}

.service-card-dark::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(255, 255, 255, 0.08));
}

.process {
  background: linear-gradient(180deg, #f8fafd 0%, #f4f7fb 100%);
}

.process .section-heading::after,
.reviews .section-heading::after,
.contact .section-heading::after {
  width: 46px;
  height: 2px;
  margin-top: 20px;
  opacity: 0.72;
}

.step-card span {
  box-shadow: 0 10px 20px rgba(18, 61, 115, 0.18);
}

.reviews {
  background: #ffffff;
}

.proof-row span {
  border-color: rgba(18, 61, 115, 0.18);
  background: #f7fafd;
  font-weight: 820;
}

.review-card {
  padding-top: 34px;
}

.review-card::after {
  margin-bottom: 14px;
  color: rgba(18, 61, 115, 0.16);
  font-size: 1.95rem;
}

.review-card p {
  color: #3f4651;
  font-weight: 520;
}

.review-card strong {
  display: block;
  padding-top: 3px;
  border-top: 1px solid rgba(211, 218, 229, 0.68);
}

.area-panel {
  border-color: rgba(18, 61, 115, 0.18);
  box-shadow: 0 22px 58px rgba(13, 22, 38, 0.095);
}

.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(18, 61, 115, 0.24), transparent 36%),
    linear-gradient(180deg, #101216 0%, #0b0f16 100%);
}

.cta-panel {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.26);
}

.contact {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.contact-panel {
  border-color: rgba(18, 61, 115, 0.18);
  box-shadow: 0 26px 74px rgba(13, 22, 38, 0.115);
}

.contact-copy {
  padding-top: 10px;
}

.contact-copy h2 {
  max-width: 460px;
}

.contact-assurance div {
  border-color: rgba(18, 61, 115, 0.18);
  box-shadow: none;
}

.contact-form {
  border-color: rgba(18, 61, 115, 0.24);
  box-shadow: 0 28px 70px rgba(13, 22, 38, 0.13);
}

.site-footer {
  background: linear-gradient(180deg, #f4f7fb 0%, #eef2f7 100%);
  border-top-color: rgba(211, 218, 229, 0.95);
}

.footer-inner {
  padding: 8px 0;
}

.footer-inner nav a:hover {
  color: var(--blue);
}

@media (max-width: 980px) {
  .contact-copy {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(8, 13, 22, 0.83) 0%, rgba(8, 13, 22, 0.66) 50%, rgba(8, 13, 22, 0.22) 100%),
      linear-gradient(180deg, rgba(8, 13, 22, 0.13), rgba(8, 13, 22, 0.32)),
      url("assets/images/hero-signing.webp") 58% center / cover no-repeat;
  }

  .trust-grid div,
  .trust-grid div:first-child,
  .trust-grid div:last-child {
    background: #ffffff;
  }

  .review-card {
    padding-top: 28px;
  }
}

/* Mobile Precision Pass */
@media (max-width: 640px) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 140px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .site-nav {
    top: 66px;
    left: 15px;
    right: 15px;
  }

  .hero {
    min-height: 620px;
    padding: 70px 0 66px;
    background:
      linear-gradient(90deg, rgba(8, 13, 22, 0.86) 0%, rgba(8, 13, 22, 0.70) 48%, rgba(8, 13, 22, 0.28) 100%),
      linear-gradient(180deg, rgba(8, 13, 22, 0.10), rgba(8, 13, 22, 0.34)),
      url("assets/images/hero-signing.webp") 64% center / cover no-repeat;
  }

  .hero-grid {
    min-height: 458px;
  }

  .hero .eyebrow {
    margin-bottom: 11px;
  }

  h1 {
    margin-bottom: 17px;
    font-size: clamp(2.24rem, 10.2vw, 3.18rem);
    letter-spacing: -0.055em;
  }

  .hero-text {
    max-width: 96%;
    margin-bottom: 21px;
  }

  .micro-trust {
    margin-top: 13px;
    font-size: 0.88rem;
  }

  .objection-line {
    margin-top: 7px;
    max-width: 95%;
  }

  .trust-grid {
    gap: 10px;
    padding: 14px 0;
  }

  .trust-grid div,
  .trust-grid div:first-child,
  .trust-grid div:last-child {
    padding: 16px;
    border-radius: 16px;
  }

  .trust-grid strong {
    margin-bottom: 5px;
    font-size: 0.94rem;
  }

  .trust-grid span {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .service-card,
  .step-card,
  .review-card,
  .area-panel,
  .cta-panel,
  .thank-you-card {
    border-radius: 20px;
  }

  .service-card,
  .step-card,
  .review-card {
    min-height: 0;
  }

  .step-card span {
    width: 36px;
    height: 36px;
    margin-bottom: 15px;
  }

  .proof-row {
    gap: 8px;
    margin-bottom: 22px;
  }

  .proof-row span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .review-card::after {
    margin-bottom: 10px;
  }

  .contact {
    padding: 58px 0 50px;
  }

  .contact-panel {
    width: min(100% - 30px, var(--container));
    padding: 20px;
    border-radius: 22px;
  }

  .contact-panel::before {
    left: 20px;
    right: 20px;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-copy .eyebrow {
    margin-bottom: 11px;
  }

  .contact-copy h2 {
    margin-bottom: 12px;
  }

  .contact-assurance {
    gap: 9px;
    margin-top: 20px;
  }

  .contact-assurance div {
    padding: 13px 15px 13px 17px;
    border-radius: 15px;
  }

  .contact-assurance div::before {
    top: 13px;
    bottom: 13px;
    width: 3px;
  }

  .contact-assurance strong {
    margin-bottom: 2px;
    font-size: 0.9rem;
  }

  .contact-assurance span {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .contact-details {
    gap: 9px;
    margin-top: 18px;
  }

  .contact-details a {
    min-height: 44px;
    font-size: 0.92rem;
  }

  .contact-form {
    gap: 9px;
    padding: 20px;
    border-radius: 20px;
  }

  .form-heading {
    margin-bottom: 8px;
    padding-bottom: 14px;
  }

  .form-heading h3 {
    font-size: 1.08rem;
  }

  .form-heading p {
    font-size: 0.88rem;
  }

  .contact-form label {
    margin-top: 0;
    font-size: 0.82rem;
  }

  .contact-form input,
  .contact-form select {
    min-height: 46px;
    padding: 12px 13px;
  }

  .contact-form textarea {
    min-height: 108px;
    padding: 12px 13px;
  }

  .form-btn {
    min-height: 52px;
    margin-top: 9px;
  }

  .site-footer {
    padding: 34px 0;
  }

  .footer-inner {
    gap: 18px;
    padding: 0;
  }

  .footer-brand img {
    width: 142px;
  }

  .footer-inner p {
    font-size: 0.88rem;
  }

  .footer-inner nav {
    gap: 14px;
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(8, 13, 22, 0.88) 0%, rgba(8, 13, 22, 0.74) 52%, rgba(8, 13, 22, 0.32) 100%),
      linear-gradient(180deg, rgba(8, 13, 22, 0.10), rgba(8, 13, 22, 0.36)),
      url("assets/images/hero-signing.webp") 69% center / cover no-repeat;
  }

  .hero-grid {
    min-height: 448px;
  }

  h1 {
    font-size: clamp(2.08rem, 10.6vw, 2.82rem);
  }
}


/* JC Websites demo return control */
.jc-demo-return {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(16, 18, 22, 0.84);
  box-shadow: 0 16px 34px rgba(13, 22, 38, 0.2);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.jc-demo-return:hover,
.jc-demo-return:focus-visible {
  transform: translateY(-2px);
  background: var(--blue);
  outline: none;
}

@media (max-width: 640px) {
  .jc-demo-return {
    left: 15px;
    bottom: 15px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.78rem;
  }
}
