/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #faf9f7;
  --bg-alt:      #f5f2ec;
  --bg-card:     #ffffff;
  --border:      #e4dfd5;
  --text:        #1a1714;
  --text-muted:  #6b6560;
  --blue:        #0d1f3c;
  --blue-dark:   #07152a;
  --blue-light:  #fdf3e3;
  --accent:      #c8821e;
  --radius:      12px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.1);
  --nav-h:       68px;
  --transition:  0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.75rem;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(200,130,30,0.3);
}
.btn-primary:hover {
  background: #a86b17;
  box-shadow: 0 4px 16px rgba(200,130,30,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: #ccc7bc;
  background: var(--bg-alt);
}

.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  box-shadow: 0 1px 4px rgba(200,130,30,0.25);
}
.btn-nav:hover {
  background: #a86b17;
  box-shadow: 0 2px 8px rgba(200,130,30,0.35);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── Nav ──────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #0d1f3c;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}
.nav-wrap.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: #fff;
}
.nav-mark { flex-shrink: 0; margin-right: 0.45rem; }
.nav-logo strong {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.nav-logo span {
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.45);
  opacity: 1;
  line-height: 1;
}
.footer .nav-logo { color: #fff; }
.footer .nav-logo strong { color: #fff; }
.footer .nav-logo span   { color: rgba(255,255,255,0.4); opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.nav-links a:not(.btn):hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Trust sidebar */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.trust-item:hover {
  border-color: #d4c8b8;
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.trust-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Sections ─────────────────────────────────────────────── */
.section { padding-block: 5.5rem; }
.section-alt { background: var(--bg-alt); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.875rem;
  line-height: 1.18;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* ─── Services ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.services-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.services-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.services-footer a:hover { color: #a86b17; }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: #d4c8b8;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.service-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.service-card-link:hover { color: #a86b17; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.service-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ─── Steps ────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
  opacity: 0.15;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── About ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--blue-light);
  border-radius: 20px;
  z-index: -1;
}

.about-text p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-text p:first-of-type {
  font-size: 1.05rem;
  color: var(--text);
}

/* ─── Contact ──────────────────────────────────────────────── */
.section-contact {
  background: var(--bg-alt);
}

.contact-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.contact-inner .section-sub { margin-inline: auto; }

.contact-form {
  text-align: left;
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #ccc7bc; }

.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #fff; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,31,60,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── Form Success ─────────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-success svg {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin: 0 auto 1rem;
}
.form-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-success p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: #0d1f3c;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy,
.footer-domain {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Scroll Animations ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-trust { flex-direction: row; flex-wrap: wrap; }
  .trust-item { flex: 1 1 calc(50% - 0.375rem); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

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

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { max-width: 320px; margin-inline: auto; }
  .about-photo::before { display: none; }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: rgba(13,31,60,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { font-size: 1.2rem; color: rgba(255,255,255,0.85); }
  .nav-toggle { display: flex; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .trust-item { flex: 1 1 100%; }

  .steps { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}

/* ─── Interior Page Hero ────────────────────────────────────── */
.hero-interior {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-interior::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,130,30,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-interior .hero-label { color: var(--accent); }

.hero-interior .hero-title {
  color: #fff;
  max-width: 660px;
}

.hero-interior .hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-interior .section-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

/* ─── Who This Is For ───────────────────────────────────────── */
.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.for-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.for-card-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--blue-light);
  border-radius: 50%;
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
  color: var(--accent);
}

.for-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.for-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── MSP Callout ───────────────────────────────────────────── */
.msp-callout {
  margin-top: 2rem;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 600px) {
  .msp-callout { grid-template-columns: 1fr; }
}

.msp-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.msp-col p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.msp-note {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Retainer Packages ─────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: start;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.package-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}

.package-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.package-price span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.package-hours {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.package-features li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
}

.package-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.package-not {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.packages-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

/* ─── Scope (In / Out) ──────────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (max-width: 640px) {
  .included-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.included-col h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.included-col h3.yes { border-color: #22c55e; }
.included-col h3.no  { border-color: #f87171; }

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.included-list li {
  font-size: 0.92rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--text);
  line-height: 1.5;
}

.included-list li .icon { flex-shrink: 0; margin-top: 0.1rem; }
.included-list.yes li .icon { color: #22c55e; }
.included-list.no  li .icon { color: #f87171; }

/* ─── Onboarding Steps ──────────────────────────────────────── */
.onboard-steps {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  position: relative;
}

.onboard-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.onboard-step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}

.onboard-step:last-child { padding-bottom: 0; }

.onboard-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.onboard-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
  padding-top: 0.5rem;
  letter-spacing: -0.01em;
}

.onboard-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  color: #fff;
  padding-block: 5.5rem;
  text-align: center;
}

.cta-section .section-label { color: var(--accent); }

.cta-section .section-title {
  color: #fff;
  margin-inline: auto;
  max-width: 540px;
}

.cta-section .section-sub {
  color: rgba(255,255,255,0.65);
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ─── Deliverables Grid ─────────────────────────────────────── */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 4rem;
  margin-top: 2rem;
  list-style: none;
}

.deliverables-grid li {
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  line-height: 1.55;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}

.deliverables-grid li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

@media (max-width: 640px) {
  .deliverables-grid { grid-template-columns: 1fr; }
}

/* ─── Out of Scope Panel ────────────────────────────────────── */
.scope-not {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.scope-not h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.scope-not ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2.5rem;
}

.scope-not ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.scope-not ul li::before {
  content: '✗';
  color: #f87171;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* ─── Cross-sell Callout ────────────────────────────────────── */
.service-crossell {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--blue-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}

.service-crossell p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}

.service-crossell a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-crossell a:hover { color: #a86b17; }
