:root {
  --ink: #0d1b2a;
  --muted: #526174;
  --blue: #173f8f;
  --blue-2: #2457b8;
  --blue-soft: #edf4ff;
  --cyan: #5cc8e8;
  --surface: #ffffff;
  --canvas: #f5f7fb;
  --line: #dfe5ee;
  --success: #176a51;
  --shadow: 0 18px 50px rgba(13, 27, 42, .10);
  --shadow-sm: 0 8px 24px rgba(13, 27, 42, .07);
  --radius: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--blue-2); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,229,238,.9);
  backdrop-filter: blur(14px);
}
.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  min-width: 0;
}
.brand:hover { text-decoration: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 15px; letter-spacing: .01em; }
.brand-copy span { color: var(--muted); font-size: 12.5px; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #344256;
  font-weight: 650;
  font-size: 14px;
  padding: 10px 11px;
  border-radius: 10px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--blue);
  background: var(--blue-soft);
  text-decoration: none;
}
.nav-links .nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--blue);
  padding-inline: 15px;
}
.nav-links .nav-cta:hover, .nav-links .nav-cta[aria-current="page"] {
  color: #fff;
  background: #123474;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--ink);
}

main { overflow: hidden; }
.container { max-width: var(--max); margin: 0 auto; padding-inline: 22px; }
.section { padding: 76px 0; }
.section.compact { padding: 52px 0; }
.section-white { background: #fff; border-block: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.55rem, 5vw, 4.8rem); margin-bottom: 22px; max-width: 14ch; }
h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 16px; }
h3 { font-size: 1.24rem; margin-bottom: 10px; }
p { margin: 0 0 16px; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.32rem); max-width: 67ch; }
.small { color: var(--muted); font-size: .92rem; }
.kicker { color: var(--muted); font-weight: 650; }

.hero {
  position: relative;
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 85% 15%, rgba(92,200,232,.25), transparent 27%),
    radial-gradient(circle at 70% 80%, rgba(36,87,184,.13), transparent 30%),
    linear-gradient(140deg, #fff 0%, #f7faff 48%, #eef4ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(23,63,143,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(23,63,143,.035), 0 0 0 140px rgba(23,63,143,.025);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); gap: 58px; align-items: center; position: relative; z-index: 1; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  box-shadow: 0 4px 12px rgba(13,27,42,.04);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-primary:hover { background: #123474; color: #fff; }
.btn-ghost { background: transparent; border-color: rgba(23,63,143,.25); color: var(--blue); }
.btn-small { min-height: 40px; padding: 8px 13px; font-size: .9rem; }

.proof-panel {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.proof-panel h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 18px; }
.proof-item { padding: 15px 0; border-top: 1px solid var(--line); }
.proof-item:first-of-type { border-top: 0; padding-top: 0; }
.proof-item strong { display: block; font-size: 1.06rem; margin-bottom: 3px; }
.proof-item span { color: var(--muted); font-size: .91rem; }

.trust-strip { background: var(--ink); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.13); }
.trust-item { padding: 24px 22px; background: var(--ink); }
.trust-item strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.trust-item span { color: #b8c4d3; font-size: .88rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.section-head p { max-width: 58ch; color: var(--muted); margin-bottom: 0; }
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 27px;
  box-shadow: var(--shadow-sm);
}
.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 20px;
}
.card p { color: var(--muted); }
.card-link { font-weight: 800; }
.card-link::after { content: " →"; }

.outcome-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.outcome-list li { position: relative; padding-left: 28px; color: var(--muted); }
.outcome-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.feature-box {
  position: relative;
  border-radius: 24px;
  min-height: 380px;
  padding: 36px;
  color: #fff;
  background: linear-gradient(145deg, #0d1b2a, #173f8f);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-box::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -80px; top: -80px; background: rgba(92,200,232,.16); box-shadow: 0 0 0 55px rgba(255,255,255,.035); }
.feature-box > * { position: relative; z-index: 1; }
.feature-box .eyebrow { color: #a9dcf0; }
.feature-box h2 { font-size: clamp(2rem, 3.6vw, 3.3rem); max-width: 12ch; }
.feature-box p { color: #d3ddeb; max-width: 45ch; }

.steps { counter-reset: step; display: grid; gap: 14px; }
.step { counter-increment: step; display: grid; grid-template-columns: 56px 1fr; gap: 17px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step::before { content: counter(step, decimal-leading-zero); color: var(--blue); font-weight: 900; font-size: 1.1rem; padding-top: 2px; }
.step p { color: var(--muted); margin-bottom: 0; }

.quote-band { background: var(--blue); color: #fff; }
.quote-band .container { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; }
.quote-band h2 { max-width: 20ch; margin-bottom: 0; }
.quote-band p { color: #d8e4f8; }
.quote-band .btn { justify-self: end; }

.page-hero {
  padding: 74px 0 58px;
  background: linear-gradient(145deg, #fff, #edf4ff);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.5rem, 4.5vw, 4.1rem); max-width: 17ch; }
.page-hero .lead { max-width: 62ch; }
.breadcrumb { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }

.service-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 44px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.service-row:last-child { border-bottom: 0; }
.service-label { color: var(--blue); font-weight: 850; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.service-row h2 { font-size: clamp(1.75rem, 2.4vw, 2.5rem); }
.service-row ul { margin: 16px 0 0; padding-left: 20px; color: var(--muted); }

.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.package { display: flex; flex-direction: column; }
.package .tag { align-self: flex-start; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); background: var(--blue-soft); padding: 6px 9px; border-radius: 999px; margin-bottom: 18px; }
.package ul { color: var(--muted); padding-left: 20px; }
.package .button-row { margin-top: auto; padding-top: 18px; }

.research-list { display: grid; gap: 22px; }
.paper {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: start;
  box-shadow: var(--shadow-sm);
}
.paper-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 13px; }
.badge { font-size: .76rem; font-weight: 800; color: var(--blue); background: var(--blue-soft); padding: 5px 9px; border-radius: 999px; }
.badge.green { color: var(--success); background: #e8f7f1; }
.paper h2 { font-size: clamp(1.42rem, 2.2vw, 2rem); margin-bottom: 10px; }
.paper .authors, .paper .summary { color: var(--muted); }
.paper-actions { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }
.paper-note { margin-top: 12px; color: var(--muted); font-size: .82rem; }

.media-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.media-card { position: relative; display: flex; flex-direction: column; }
.media-card .media-type { color: var(--blue); text-transform: uppercase; letter-spacing: .11em; font-size: .76rem; font-weight: 850; }
.media-card h2 { font-size: 1.45rem; margin: 10px 0; }
.media-card p { flex: 1; }
.media-card .source { color: var(--muted); font-weight: 700; font-size: .9rem; margin-bottom: 14px; }

.bio-grid { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: 54px; align-items: start; }
.bio-panel { background: var(--ink); color: #fff; border-radius: 24px; padding: 32px; position: sticky; top: 108px; }
.bio-mark { width: 88px; height: 88px; display: grid; place-items: center; background: #fff; border-radius: 20px; margin-bottom: 22px; }
.bio-mark img { width: 64px; height: 64px; }
.bio-panel h2 { font-size: 1.7rem; margin-bottom: 8px; }
.bio-panel p { color: #c4cfdd; }
.bio-panel a { color: #b8e9f7; }
.bio-copy h2 { margin-top: 34px; font-size: 1.7rem; }
.bio-copy h2:first-child { margin-top: 0; }

.contact-grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(360px,.88fr); gap: 34px; align-items: start; }
.contact-card { background: var(--ink); color: #fff; border-radius: 24px; padding: 34px; min-width: 0; }
.contact-card .eyebrow { color: #a9dcf0; }
.contact-card p { color: #d5deea; }
.contact-email { font-size: clamp(1.55rem, 2.1vw, 1.95rem); line-height: 1.08; letter-spacing: -.035em; margin-bottom: 16px; overflow-wrap: anywhere; word-break: break-word; }
.contact-email a { color: #fff; }
.contact-email a:hover { color: #fff; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.contact-actions { display: grid; gap: 10px; margin-top: 20px; }
.contact-actions .btn { width: 100%; cursor: pointer; }
.contact-card .contact-primary { background: #fff; border-color: #fff; color: var(--ink); }
.contact-card .contact-primary:hover { background: #eef4ff; color: var(--blue); text-decoration: none; }
.contact-card .contact-secondary { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; box-shadow: none; }
.contact-card .contact-secondary:hover { background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.contact-card .small { color: #b9c7d7; }
.copy-status { display: block; min-height: 1.5em; margin-top: 8px; }
.inquiry-list { display: grid; gap: 14px; margin-top: 22px; }
.inquiry-item { border-top: 1px solid rgba(255,255,255,.13); padding-top: 14px; }
.inquiry-item strong { display: block; margin-bottom: 3px; }

.faq-head h2 { margin-bottom: 8px; }
.faq-head p { color: var(--muted); margin-bottom: 0; }
.faq { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); margin: 12px 0 0; }

.site-footer { background: #081522; color: #c4cfdd; padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 34px; }
.footer-brand { color: #fff; font-weight: 850; font-size: 1.05rem; }
.footer-grid h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: #7f91a7; margin-bottom: 14px; }
.footer-grid a { display: block; color: #d6e0eb; margin: 8px 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; font-size: .82rem; color: #8fa0b3; display: flex; justify-content: space-between; gap: 18px; }

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  .nav-links { position: absolute; top: 77px; left: 0; right: 0; padding: 12px 22px 20px; background: #fff; border-bottom: 1px solid var(--line); display: none; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .feature-grid, .quote-band .container, .bio-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  .hero-grid { gap: 36px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .cards-3, .package-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 12px; }
  .paper { grid-template-columns: 1fr; }
  .paper-actions { flex-direction: row; flex-wrap: wrap; min-width: 0; }
  .bio-panel { position: static; }
  .quote-band .btn { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-shell { min-height: 70px; padding-inline: 16px; }
  .brand-copy span { display: none; }
  .nav-links { top: 69px; padding-inline: 16px; }
  .container { padding-inline: 16px; }
  .section { padding: 58px 0; }
  .hero { padding: 56px 0; }
  h1 { font-size: 2.55rem; }
  .section-head { align-items: start; flex-direction: column; gap: 8px; }
  .cards-2, .media-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 18px 16px; }
  .card, .paper { padding: 22px; }
  .feature-box { min-height: 0; padding: 28px; }
  .page-hero { padding: 54px 0 42px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}


/* Revenue-focused offer and pricing additions */
.compact-fit { padding-top: 58px; padding-bottom: 58px; }
.domain-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.domain-chip { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #344256; font-weight: 700; font-size: .92rem; box-shadow: 0 3px 10px rgba(13,27,42,.035); }
.price-line { display: grid; gap: 3px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.price-line strong { color: var(--ink); font-size: 1.08rem; }
.price-line span { color: var(--muted); font-size: .86rem; }
.featured-card { border-color: rgba(23,63,143,.32); box-shadow: 0 14px 36px rgba(23,63,143,.13); }
.entry-offer { margin-top: 22px; padding: 24px 26px; border-radius: 18px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; background: linear-gradient(135deg, #edf4ff, #fff); border: 1px solid rgba(23,63,143,.18); }
.entry-offer h3 { font-size: 1.55rem; margin-bottom: 8px; }
.entry-offer p { margin-bottom: 0; color: var(--muted); max-width: 72ch; }
.entry-offer .eyebrow { margin-bottom: 8px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card .tag { align-self: flex-start; font-size: .74rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); background: var(--blue-soft); padding: 6px 9px; border-radius: 999px; margin-bottom: 18px; }
.price-card .price { color: var(--blue); font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.45rem); letter-spacing: -.035em; line-height: 1; margin: 6px 0 18px; }
.price-card .price span { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .05em; }
.price-card ul { color: var(--muted); padding-left: 20px; margin-bottom: 20px; }
.price-card .delivery { display: grid; gap: 2px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.price-card .delivery span { color: var(--muted); font-size: .9rem; }
.price-card.recommended { border: 2px solid var(--blue); box-shadow: 0 18px 44px rgba(23,63,143,.16); }
.custom-tier { margin-top: 22px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; background: var(--ink); color: #fff; border-radius: 20px; padding: 28px; }
.custom-tier p { color: #c4cfdd; margin-bottom: 0; max-width: 76ch; }
.custom-tier .eyebrow { color: #a9dcf0; margin-bottom: 8px; }
.custom-price { display: grid; gap: 7px; min-width: 230px; }
.custom-price strong { font-size: 1.35rem; }
.custom-price span { color: #b9c7d7; font-size: .9rem; }
.custom-price .btn { margin-top: 8px; }
.pricing-note { margin: 18px 0 0; color: var(--muted); font-size: .9rem; }
.workshop-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.workshop-price { color: var(--blue); font-weight: 900; font-size: 1.3rem; margin: 4px 0 12px; }
.topic-panel { margin-top: 24px; padding: 26px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.topic-panel h3 { margin-bottom: 18px; }
.sample-cta { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.sample-cta p { max-width: 72ch; color: var(--muted); margin-bottom: 0; }
.selected-service { margin: 16px 0 4px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); }
.selected-service strong { display: block; font-size: .78rem; color: #a9dcf0; text-transform: uppercase; letter-spacing: .08em; }
.selected-service span { display: block; margin-top: 4px; color: #fff; font-weight: 800; }
.sample-hero h1 { max-width: 18ch; }
.memo-shell { max-width: 960px; }
.memo-header { display: grid; grid-template-columns: 1fr 280px; gap: 34px; padding-bottom: 28px; border-bottom: 3px solid var(--ink); }
.memo-label { color: var(--blue); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.memo-header h2 { margin: 10px 0 0; font-size: clamp(2rem, 4vw, 3.1rem); }
.memo-meta { display: grid; align-content: start; gap: 6px; padding: 18px; background: var(--blue-soft); border-radius: 14px; color: var(--muted); font-size: .88rem; }
.memo-meta strong { color: var(--blue); }
.memo-section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.memo-section h3 { font-size: 1.5rem; }
.memo-section p, .memo-section li { color: #354458; }
.memo-bottom-line { padding: 28px; margin: 28px 0 0; border: 1px solid rgba(23,63,143,.22); border-radius: 18px; background: linear-gradient(135deg,#edf4ff,#fff); }
.memo-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.memo-grid .memo-section { border-bottom: 0; }
.risk-table { display: grid; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.risk-table > div { display: grid; grid-template-columns: 220px 1fr; gap: 18px; padding: 15px 17px; border-top: 1px solid var(--line); background: #fff; }
.risk-table > div:first-child { border-top: 0; }
.risk-table span { color: var(--muted); }
.guidance-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.guidance { padding: 18px; border-radius: 14px; border: 1px solid var(--line); background: #fff; }
.guidance strong { display: block; margin-bottom: 7px; }
.guidance p { margin-bottom: 0; font-size: .92rem; }
.guidance.good { border-top: 4px solid #176a51; }
.guidance.caution { border-top: 4px solid #c18410; }
.guidance.avoid { border-top: 4px solid #a23a3a; }
.source-note { font-size: .92rem; }
.memo-cta { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; margin-top: 32px; padding: 24px; border-radius: 18px; background: var(--ink); color: #fff; }
.memo-cta p { color: #c4cfdd; margin-bottom: 0; }

@media (max-width: 920px) {
  .entry-offer, .custom-tier, .sample-cta, .memo-header, .memo-cta { grid-template-columns: 1fr; }
  .pricing-grid, .workshop-grid { grid-template-columns: 1fr; }
  .custom-price { min-width: 0; }
  .memo-grid, .guidance-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .entry-offer, .custom-tier, .topic-panel, .memo-bottom-line, .memo-cta { padding: 20px; }
  .risk-table > div { grid-template-columns: 1fr; gap: 5px; }
}
@media print {
  .site-header, .site-footer, .sample-hero .button-row, .memo-cta { display: none !important; }
  body { background: #fff; color: #000; }
  main { overflow: visible; }
  .page-hero { padding: 24px 0; background: #fff; border: 0; }
  .section { padding: 20px 0; }
  .memo-bottom-line, .memo-meta, .guidance, .risk-table > div { background: #fff; box-shadow: none; }
  a { color: #000; text-decoration: none; }
}


/* Secure payment options */
.payment-panel {
  margin-top: 26px;
  padding: 26px 28px;
  border: 1px solid rgba(23,63,143,.22);
  border-radius: 20px;
  background: linear-gradient(135deg, #edf4ff, #fff);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.payment-panel h2,
.payment-panel h3 { margin: 8px 0 8px; }
.payment-panel p { color: var(--muted); margin-bottom: 0; max-width: 72ch; }
.payment-panel-contact { margin-top: 0; }
.payment-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.payment-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(13,27,42,.07);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.payment-button:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(13,27,42,.11); text-decoration: none; }
.payment-button.stripe:hover { border-color: rgba(99,91,255,.45); }
.payment-button.paypal:hover { border-color: rgba(0,48,135,.45); }
.payment-button img { display: block; width: auto; height: 20px; flex: 0 0 auto; }
.payment-button span { white-space: nowrap; }

@media (max-width: 920px) {
  .payment-panel { grid-template-columns: 1fr; }
  .payment-links { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .payment-panel { padding: 20px; }
  .payment-links { display: grid; grid-template-columns: 1fr; }
  .payment-button { justify-content: center; }
}

/* Keep anchored inquiry details visible below the sticky header. */
#contact-details { scroll-margin-top: 6.5rem; }

/* Contact layout: keep the actionable panel first on narrow screens and preserve the desktop two-column arrangement. */
.contact-grid {
  grid-template-areas: "guide card";
}
.contact-guide { grid-area: guide; }
.contact-card { grid-area: card; }

@media (max-width: 920px) {
  .contact-grid {
    grid-template-areas:
      "card"
      "guide";
  }
}

@media (max-width: 640px) {
  #contact-details { scroll-margin-top: 5.25rem; }
  .contact-card { padding: 26px 22px; }
}
