/* Sign and Deliver — shared service page styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1F3A;
  --navy-mid: #16355F;
  --navy-light: #1E4A82;
  --gold: #C9923A;
  --gold-light: #E8B46A;
  --gold-pale: #FBF3E8;
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --text-dark: #0B1F3A;
  --text-mid: #3A5070;
  --text-light: #6B849E;
  --border: rgba(11,31,58,0.12);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  border-bottom: 1px solid rgba(201,146,58,0.25);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 38px; height: 38px; background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--white);
  font-style: italic; letter-spacing: -0.5px; flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text strong { font-family: var(--serif); font-size: 16px; color: var(--white); font-weight: 400; }
.nav-logo-text span { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 8px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 150px 5% 70px;
  color: var(--white);
}
.page-hero-inner { max-width: 900px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 5vw, 52px); line-height: 1.12;
  margin-bottom: 18px;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero-desc { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 680px; line-height: 1.7; margin-bottom: 28px; }
.hero-promise {
  display: inline-block; background: rgba(201,146,58,0.16);
  border: 1px solid rgba(201,146,58,0.45); border-radius: 999px;
  padding: 7px 16px; font-size: 13.5px; color: var(--gold-light);
  font-weight: 600; margin-bottom: 26px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--white); text-decoration: none;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 15px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); text-decoration: none;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* TRUST STRIP */
.trust-strip {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px 40px; padding: 22px 5%;
  font-size: 13.5px; font-weight: 600; color: var(--text-mid);
}
.trust-strip span::before { content: "✓ "; color: var(--gold); }

/* CONTENT */
section { padding: 72px 5%; }
.content-inner { max-width: 900px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 36px); line-height: 1.2;
  color: var(--navy); margin-bottom: 18px;
}
.content-inner p { font-size: 15.5px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }

/* COVER GRID */
.cover-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px;
  list-style: none; margin-top: 26px;
}
.cover-grid li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-mid); line-height: 1.5;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
}
.cover-grid li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* WHY */
.why-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
.why-card { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; }
.why-card h3 { font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.faq-item p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* FORM */
.request-section { background: var(--gold-pale); border-top: 1px solid rgba(201,146,58,0.18); }
.form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 30px; max-width: 640px; margin: 30px auto 0;
  box-shadow: 0 18px 50px rgba(11,31,58,0.08);
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 11px 13px; font-family: var(--sans); font-size: 14.5px;
  color: var(--text-dark); background: var(--cream);
  border: 1.5px solid var(--border); border-radius: 9px; outline: none;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--white); border: none;
  padding: 14px; border-radius: 10px; font-family: var(--sans);
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.6; cursor: default; }

.form-confirm { text-align: center; padding: 20px 8px; }
.form-confirm-icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.form-confirm-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--white); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.form-confirm h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.form-confirm p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }
.form-error {
  background: #FDF2F2; border: 1.5px solid rgba(180,60,60,0.35); border-radius: 10px;
  padding: 14px 18px; font-size: 14px; color: #8A3434; line-height: 1.6; margin-top: 14px;
}
.form-error a { color: var(--navy); font-weight: 600; }
.form-note { text-align: center; font-size: 13.5px; color: var(--text-mid); margin-top: 14px; }
.form-note strong { color: var(--navy); }

/* FOOTER */
footer {
  background: var(--navy); color: rgba(255,255,255,0.55);
  padding: 48px 5%; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { font-family: var(--serif); font-size: 18px; color: var(--white); font-weight: 400; }
.footer-brand span {
  display: block; font-family: var(--sans); font-size: 12px;
  color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 2px; font-weight: 400; font-style: normal;
}
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { text-decoration: none; font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 12.5px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 4%; }
  .nav-links { gap: 20px; }
  .nav-links li:not(:last-child) { display: none; }
  .cover-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 56px 6%; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
}
