/**
 * guides.css — Guide Previews page
 * Scoped prefix: .guides-* to prevent any cascade conflicts with shared stylesheets.
 * Load after menu.css and llv-gold-cta.css.
 */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --g-gold:          #C6B08A;
  --g-gold-dim:      rgba(198,176,138,0.72);
  --g-gold-faint:    rgba(198,176,138,0.10);
  --g-gold-border:   rgba(198,176,138,0.28);
  --g-bg:            #0f1218;
  --g-bg-mid:        #131926;
  --g-surface:       rgba(18,28,48,0.80);
  --g-border:        rgba(55,85,140,0.22);
  --g-text:          rgba(240, 237, 232,0.90);
  --g-text-dim:      rgba(185,200,222,0.80);
  --g-text-muted:    rgba(185,200,222,0.38);
  --g-paper:         #F6F4EF;
  --g-paper-text:    #1A1C28;
  --g-paper-dim:     #5C6070;
  --g-paper-border:  #E3DDD4;
  --g-paper-gold:    #BDA277;
  --g-radius:        14px;
  --g-radius-sm:     8px;
  --g-max:           1140px;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.guides-container {
  max-width: var(--g-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.guides-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--g-gold-dim);
  margin-bottom: 18px;
}

.guides-gold {
  color: var(--g-gold);
}

.guides-section-hdr {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.guides-section-hdr h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: rgba(240, 237, 232,0.96);
  margin-bottom: 16px;
}
.guides-section-hdr p {
  font-size: 1.125rem;
  color: var(--g-text-dim);
  line-height: 1.82;
  max-width: 54ch;
  margin: 0 auto;
}

/* Outline button — scoped to this page, used for secondary hero CTA */
a.guides-outline-btn,
.guides-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border-radius: 5px;
  border: 1px solid rgba(198,176,138,0.32);
  color: var(--g-gold);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
a.guides-outline-btn:hover,
.guides-outline-btn:hover {
  border-color: rgba(198,176,138,0.55);
  background: rgba(198,176,138,0.06);
  color: var(--g-gold);
  text-decoration: none;
}

/* ============================================================
   S1 &mdash; HERO
   ============================================================ */
/* Scroll-in hero (matches For Families page) */
.guides-hero .animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.guides-hero .animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.guides-hero .animate.visible,
.guides-hero .animate-right.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .guides-hero .animate,
  .guides-hero .animate-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.guides-hero {
  padding: 96px 2rem 88px;
  background: radial-gradient(ellipse at 50% 40%, #1a2236 0%, var(--g-bg) 65%);
  border-bottom: 1px solid var(--g-border);
  overflow: hidden;
}
.guides-hero__inner {
  max-width: var(--g-max);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.72fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.guides-hero__copy {
  text-align: left;
  min-width: 0;
}
.guides-hero__hl {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.17;
  color: rgba(240, 237, 232,0.96);
  margin-bottom: 22px;
}
.guides-hero__body {
  font-size: 1.05rem;
  color: var(--g-text-dim);
  line-height: 1.82;
  max-width: 52ch;
  margin: 0 0 34px;
}
.guides-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.guides-hero__note {
  font-size: 0.8rem;
  color: rgba(240, 237, 232,0.26);
  font-style: italic;
  line-height: 1.6;
  max-width: 52ch;
}
.guides-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding-left: 8px;
}
.guides-hero__figure {
  margin: 0;
  width: 100%;
  max-width: min(100%, 240px);
  flex-shrink: 0;
}
.guides-hero__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 6px 16px rgba(0,0,0,0.35);
}
/* ============================================================
   S2 &mdash; GUIDE CONCEPT CARDS
   ============================================================ */
.guides-concept {
  padding: 100px 2rem;
  background: var(--g-bg-mid);
  border-bottom: 1px solid var(--g-border);
}
.guides-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.guides-card {
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-top: 1.5px solid rgba(198,176,138,0.52);
  border-radius: var(--g-radius);
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
}
.guides-card__label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g-gold-dim);
  margin-bottom: 8px;
}
.guides-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: rgba(240, 237, 232,0.98);
  line-height: 1.25;
  margin-bottom: 10px;
}
.guides-card__desc {
  font-size: 0.88rem;
  color: rgba(185,200,222,0.82);
  line-height: 1.65;
  margin-bottom: 16px;
}
.guides-card__divider {
  height: 1px;
  background: var(--g-border);
  margin-bottom: 13px;
}
.guides-card__includes {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--g-text-muted);
  margin-bottom: 9px;
}
.guides-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.guides-card__list li {
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(215,225,240,0.88);
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.3;
}
.guides-card__list li::before {
  content: '•';
  color: rgba(198,176,138,0.65);
  font-size: 0.9rem;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}
a.guides-card__cta,
.guides-card__cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border: 1px solid var(--g-gold-border);
  border-radius: var(--g-radius-sm);
  background: var(--g-gold-faint);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--g-gold);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  margin-top: auto;
}
a.guides-card__cta:hover,
.guides-card__cta:hover {
  background: rgba(198,176,138,0.16);
  border-color: rgba(198,176,138,0.50);
  color: var(--g-gold);
  text-decoration: none;
}

/* ============================================================
/* ============================================================
   S3 &mdash; VISUAL PREVIEW (polished document renders)
   ============================================================ */
/* ============================================================
   S3 — VISUAL PREVIEW (polished document renders)
   ============================================================ */
/* S3 VISUAL PREVIEW - polished UI mockups */
.guides-preview-section { padding: 76px 2rem 88px; background: var(--g-bg); border-bottom: 1px solid var(--g-border); overflow: hidden; }
.guides-previews { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 4vw, 56px); align-items: stretch; }
.guides-preview-wrap { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.guides-preview-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g-gold-dim); text-align: center; }
.guides-preview-caption { margin: 4px 0 0; text-align: center; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em; color: rgba(185, 200, 222, 0.42); line-height: 1.5; }
.guides-mock-stack { position: relative; padding: 8px 6px 14px; }
.guides-mock-stack::before { content: ''; position: absolute; left: 12%; right: 12%; bottom: 0; height: 42%; background: radial-gradient(ellipse at 50% 100%, rgba(198, 176, 138, 0.18) 0%, transparent 70%); filter: blur(22px); pointer-events: none; z-index: 0; }
.guides-mock { position: relative; z-index: 1; border-radius: 16px; border: 1px solid rgba(198, 176, 138, 0.16); background: linear-gradient(155deg, rgba(22, 34, 54, 0.96) 0%, rgba(14, 20, 34, 0.98) 55%, rgba(10, 14, 24, 1) 100%); box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 10px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06); overflow: hidden; }
.guides-mock__shine { position: absolute; inset: 0 0 auto 0; height: 120px; background: linear-gradient(180deg, rgba(198, 176, 138, 0.1) 0%, transparent 100%); pointer-events: none; }
.guides-mock::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(198, 176, 138, 0.35), transparent); pointer-events: none; }
.guides-mock--family { min-height: 220px; }
.guides-mock__body--split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 22px 20px 24px; }
.guides-mock__panel { padding: 4px 16px 4px 0; }
.guides-mock__panel + .guides-mock__panel { padding-left: 20px; border-left: 1px solid rgba(198, 176, 138, 0.12); }
.guides-mock__panel-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(198, 176, 138, 0.82); margin-bottom: 14px; }
.guides-mock__lines { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.guides-mock__lines li { display: flex; align-items: center; gap: 9px; font-size: 0.8rem; font-weight: 500; color: rgba(220, 228, 240, 0.78); line-height: 1.35; }
.guides-mock__dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(198, 176, 138, 0.35); flex-shrink: 0; }
.guides-mock__dot--fill { background: rgba(198, 176, 138, 0.65); box-shadow: 0 0 0 3px rgba(198, 176, 138, 0.12); }
.guides-mock--executor { display: flex; flex-direction: column; }
.guides-mock__topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 16px 18px 14px; border-bottom: 1px solid rgba(198, 176, 138, 0.1); background: rgba(0, 0, 0, 0.18); }
.guides-mock__topbar-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.guides-mock__icon { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(145deg, rgba(198, 176, 138, 0.28) 0%, rgba(198, 176, 138, 0.08) 100%); border: 1px solid rgba(198, 176, 138, 0.22); flex-shrink: 0; }
.guides-mock__topbar-title { font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 600; color: rgba(240, 237, 232, 0.94); }
.guides-mock__topbar-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.guides-mock__topbar-link { font-size: 0.68rem; font-weight: 600; color: rgba(185, 200, 222, 0.5); }
.guides-mock__topbar-sep { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.12); }
.guides-mock__topbar-btn { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #1a1a1a; background: linear-gradient(180deg, #c6b08a 0%, #b79f74 100%); padding: 7px 12px; border-radius: 6px; border: 1px solid rgba(0, 0, 0, 0.12); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); }
.guides-mock__body { padding: 16px 18px 20px; position: relative; }
.guides-mock__lede { font-size: 0.74rem; line-height: 1.55; color: rgba(185, 200, 222, 0.55); margin: 0 0 14px; max-width: 42ch; }
.guides-mock__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-bottom: 12px; }
.guides-mock__tile { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 12px; border-radius: 8px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); min-height: 40px; }
.guides-mock__tile--wide { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 8px; background: rgba(198, 176, 138, 0.06); border-color: rgba(198, 176, 138, 0.14); }
.guides-mock__tile-label { font-size: 0.72rem; font-weight: 600; color: rgba(240, 237, 232, 0.88); line-height: 1.3; }
.guides-mock__tile-hint { font-size: 0.65rem; color: rgba(185, 200, 222, 0.45); line-height: 1.4; }
.guides-mock__tile-add { font-size: 0.62rem; font-weight: 600; color: rgba(198, 176, 138, 0.55); flex-shrink: 0; }
.guides-mock__callout { padding: 12px 14px; border-radius: 10px; background: rgba(198, 176, 138, 0.08); border: 1px solid rgba(198, 176, 138, 0.18); }
.guides-mock__callout-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(198, 176, 138, 0.85); margin-bottom: 8px; }
.guides-mock__callout-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.guides-mock__callout-list li { font-size: 0.68rem; color: rgba(185, 200, 222, 0.55); line-height: 1.45; padding-left: 10px; position: relative; }
.guides-mock__callout-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 4px; height: 4px; border-radius: 50%; background: rgba(198, 176, 138, 0.5); transform: translateY(-50%); }
@media (max-width: 900px) { .guides-mock__body--split { grid-template-columns: 1fr; gap: 18px; } .guides-mock__panel + .guides-mock__panel { padding-left: 0; border-left: none; padding-top: 18px; border-top: 1px solid rgba(198, 176, 138, 0.12); } }
@media (max-width: 720px) { .guides-previews { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } .guides-preview-section { padding: 56px 1.5rem 64px; } .guides-mock__topbar-right { width: 100%; justify-content: flex-start; } .guides-mock__grid { grid-template-columns: 1fr; } }
.guides-why {
  padding: 88px 2rem;
  background: var(--g-bg-mid);
  border-bottom: 1px solid var(--g-border);
}
.guides-why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guides-why-card {
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-radius: 10px;
  padding: 22px 24px;
}
.guides-why-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--g-gold);
  margin-bottom: 10px;
}
.guides-why-card__body {
  font-size: 0.95rem;
  color: var(--g-text-dim);
  line-height: 1.76;
}

/* ============================================================
   S5 — HOW IT WORKS
   ============================================================ */
.guides-steps {
  padding: 88px 2rem;
  background: var(--g-bg);
  border-bottom: 1px solid var(--g-border);
}
.guides-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  position: relative;
}
.guides-steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, rgba(198,176,138,0.20) 0%, rgba(198,176,138,0.08) 50%, rgba(198,176,138,0.20) 100%);
  pointer-events: none;
}
.guides-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.guides-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(198,176,138,0.40);
  background: rgba(18,25,40,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--g-gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.guides-step__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: rgba(240, 237, 232,0.96);
  line-height: 1.26;
}
.guides-step__body {
  font-size: 0.96rem;
  color: var(--g-text-dim);
  line-height: 1.80;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}
.guides-step__title {
  margin-top: 6px;
}
.guides-steps .guides-section-hdr {
  margin-bottom: 44px;
}

.guides-steps .guides-section-hdr .guides-hiw-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.guides-steps .guides-section-hdr p {
  color: rgba(185,200,222,0.90);
}

/* ============================================================
   S6 — PRIVACY / REASSURANCE
   ============================================================ */
.guides-privacy {
  padding: 96px 2rem;
  background: rgba(10,15,26,0.95);
  border-bottom: 1px solid var(--g-border);
}
.guides-privacy-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.guides-privacy-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  color: rgba(240, 237, 232,0.96);
  margin-bottom: 16px;
}
.guides-privacy-inner > p {
  font-size: 1rem;
  color: var(--g-text-dim);
  line-height: 1.82;
  margin-bottom: 36px;
}
.guides-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.guides-trust-list li {
  font-size: 0.97rem;
  color: rgba(215,225,240,0.88);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}
.guides-trust-list li:last-child {
  border-bottom: none;
}
.guides-trust-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(198,176,138,0.42);
  color: var(--g-gold);
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(198,176,138,0.06);
  opacity: 1;
  flex-shrink: 0;
}

/* ============================================================
   S7 — FINAL CTA
   ============================================================ */
.guides-final-cta {
  padding: 100px 2rem 130px;
  background: radial-gradient(ellipse at 50% 0%, #1a2236 0%, var(--g-bg) 64%);
  text-align: center;
  border-top: 1px solid var(--g-border);
}
.guides-final-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  font-weight: 600;
  color: rgba(240, 237, 232,0.98);
  margin-bottom: 16px;
  line-height: 1.2;
}
.guides-final-cta > .guides-container > p {
  font-size: 1rem;
  color: var(--g-text-dim);
  line-height: 1.80;
  margin-bottom: 40px;
}
.guides-final-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .guides-cards        { grid-template-columns: 1fr; gap: 20px; }
  .guides-previews     { grid-template-columns: 1fr; gap: 40px; }
  .guides-why-cards    { grid-template-columns: 1fr; gap: 16px; }
  .guides-steps-grid   { grid-template-columns: 1fr; gap: 36px; }
  .guides-steps-grid::before { display: none; }
}

@media (max-width: 860px) {
  .guides-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .guides-hero__copy { order: 1; }
  .guides-hero__visual { order: 2; }
  .guides-hero__figure { max-width: min(100%, 200px); margin: 0 auto; }
}

@media (max-width: 640px) {
  .guides-hero              { padding: 72px 1.25rem 56px; }
  .guides-concept,
  .guides-why,
  .guides-steps             { padding: 72px 1.25rem; }
  .guides-preview-section   { padding: 60px 1.25rem 72px; }
  .guides-privacy           { padding: 72px 1.25rem; }
  .guides-final-cta         { padding: 80px 1.25rem 120px; }
  .guides-hero__ctas        { flex-direction: column; align-items: stretch; }
  .guides-final-cta__btns   { flex-direction: column; align-items: stretch; }
  .guides-hero__ctas a,
  .guides-final-cta__btns a { width: 100%; box-sizing: border-box; }
  .guides-card              { padding: 28px 22px 26px; }
  .guides-section-hdr       { margin-bottom: 44px; }
  .guides-steps-grid        { gap: 28px; }
  .guides-doc__row           { grid-template-columns: 1fr; gap: 4px; }
  .guides-doc__val           { text-align: left; }
  .guides-doc-shell          { padding: 8px; }
}


/* guides.html — preview comparison panels (Family / Executor sample documents) */
.guides-preview-comparison {
  background: #0d121c;
  padding: 64px 24px 88px;
}

.guides-preview-comparison__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.guide-preview-panel {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(198, 176, 138, 0.12), transparent 34%),
    linear-gradient(145deg, #172232 0%, #101722 58%, #0b111b 100%);
  border: 1px solid rgba(198, 176, 138, 0.24);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.guide-preview-panel__eyebrow {
  margin: 0 0 16px;
  color: #C6B08A;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guide-preview-panel h2 {
  margin: 0;
  color: #f6f1e8;
  font-size: 32px;
  line-height: 1.14;
  font-weight: 700;
}

.guide-preview-panel__copy > p:not(.guide-preview-panel__eyebrow) {
  margin: 18px 0 0;
  color: rgba(244, 240, 232, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.guide-sample-document {
  margin: 34px 0;
  padding: 30px;
  border-radius: 24px;
  background: rgba(8, 13, 22, 0.74);
  border: 1px solid rgba(198, 176, 138, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.guide-sample-document__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(198, 176, 138, 0.22);
}

.guide-sample-document__header span {
  color: rgba(244, 240, 232, 0.56);
  font-size: 13px;
}

.guide-sample-document__header strong {
  color: #f6f1e8;
  font-size: 18px;
}

.guide-sample-document__section {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-sample-document__section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.guide-sample-document__section p {
  margin: 0 0 12px;
  color: #C6B08A;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-sample-document__section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-sample-document__section li {
  position: relative;
  padding-left: 22px;
  color: rgba(244, 240, 232, 0.8);
  font-size: 16px;
  line-height: 1.7;
}

.guide-sample-document__section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #C6B08A;
}

.guide-preview-panel__button {
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: #C6B08A;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.guide-preview-panel__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

@media (max-width: 860px) {
  .guides-preview-comparison {
    padding: 48px 18px 68px;
  }

  .guides-preview-comparison__wrap {
    grid-template-columns: 1fr;
  }

  .guide-preview-panel {
    min-height: auto;
    padding: 26px;
    border-radius: 24px;
  }

  .guide-preview-panel h2 {
    font-size: 27px;
  }

  .guide-sample-document {
    padding: 22px;
  }

  .guide-sample-document__header {
    display: block;
  }

  .guide-sample-document__header strong {
    display: block;
    margin-top: 6px;
  }
}
