/* ============================================================
   CLINIVA — "Randevu Defteri" (Ledger & Ink) landing kimliği
   Bu dosya sadece Home/Index.cshtml'e yüklenir; global cliniva.css
   :root değişkenlerine veya admin paneline hiçbir şekilde dokunmaz —
   tüm sınıflar "lg-" önekiyle isim çakışmasından korunur.
   ============================================================ */

.lg {
    --ink: #16241F;
    --ink-2: #223832;
    --ink-3: #2E4A40;
    --parchment: #ECE7D8;
    --parchment-2: #E2DBC5;
    --paper: #FBFAF6;
    --brass: #A9824C;
    --brass-bright: #C79B5C;
    --brass-light: #EADFC4;
    --sage: #64735A;
    --clay: #9C5642;
    --text: #2A2823;
    --text-soft: #58554B;
    --text-on-ink: #EDE8DA;
    --text-on-ink-soft: #A9AC9E;
    --rule: #D8D0B8;
    --rule-on-ink: rgba(237,232,218,0.16);

    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.lg { position: relative; }
/* NOT position:fixed: bir sayfa-uzunlugunda "fixed" katman, tarayicinin her
   kaydirmada bu buyuk feTurbulence filtresini yeniden compositelemesini
   gerektirir — hem gercek performans maliyeti hem de (canlida yakalanan)
   cok uzun sayfalarda kismi/bozuk render riski. absolute ile icerikle
   birlikte TEK SEFER cizilir, kaydirmada yeniden hesaplanmaz. */
.lg::before {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    opacity: .035; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.lg > * { position: relative; z-index: 2; }
.lg * { box-sizing: border-box; }
.lg h1, .lg h2, .lg h3, .lg blockquote { margin: 0; font-family: 'Fraunces', Georgia, serif; }
.lg p, .lg span, .lg a, .lg button, .lg li { font-family: inherit; }
.lg .lg-mono { font-family: 'IBM Plex Mono', 'Courier New', monospace; }

.lg-container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* Genel bir "color: inherit" sifirlamasi BILEREK yok — her linkin kendi
   sinifi kendi rengini tanimliyor; genel bir sifirlama, ozgulluk carpismasi
   riskini geri getirir (yukaridaki lg-btn-ghost-paper hatasi gibi). */
.lg a { text-decoration: none; }
.lg ul { list-style: none; padding: 0; margin: 0; }

/* ===== BUTTONS ===== */
.lg-btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px;
    padding: 13px 26px; border-radius: 8px; border: 1.5px solid transparent;
    cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    white-space: nowrap;
}
/* .lg-btn. önekiyle qualify edilmis secicilerin ozgullugu (0,2,0), genel
   ".lg a { color:inherit }" sifirlamasinin (0,1,1) ozgullugunu bilerek asar
   — aksi halde renk sessizce inherit'e duser (bu hata canlida yakalandi). */
.lg-btn.lg-btn-brass { background: var(--brass); color: var(--paper); box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 8px 20px -8px rgba(169,130,76,.55); }
.lg-btn.lg-btn-brass:hover { background: var(--brass-bright); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 12px 26px -8px rgba(169,130,76,.6); }
.lg-btn.lg-btn-ghost-ink { border-color: rgba(22,36,31,.22); color: var(--ink); background: transparent; }
.lg-btn.lg-btn-ghost-ink:hover { border-color: var(--ink); background: rgba(22,36,31,.04); }
.lg-btn.lg-btn-ghost-paper { border-color: rgba(237,232,218,.3); color: var(--text-on-ink); background: transparent; }
.lg-btn.lg-btn-ghost-paper:hover { border-color: var(--text-on-ink); background: rgba(237,232,218,.08); }
.lg-btn-lg { padding: 16px 30px; font-size: 15.5px; }

/* ===== EYEBROW / LABEL ===== */
.lg-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase; color: var(--brass);
}
.lg-eyebrow::before { content: ''; width: 16px; height: 1.5px; background: currentColor; display: inline-block; }
.lg-eyebrow.on-ink { color: var(--brass-bright); }

.lg-section-title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); margin: 14px 0 0; }
.lg-section-sub { font-family: 'Manrope', sans-serif; font-size: 16px; color: var(--text-soft); max-width: 520px; line-height: 1.65; margin-top: 14px; }
.lg-section-head { margin-bottom: 52px; }
.lg-section-head.center { text-align: center; }
.lg-section-head.center .lg-section-sub { margin-left: auto; margin-right: auto; }

/* ===== NAV ===== */
.lg-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251,250,246,.86); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 28px;
}
.lg-nav-inner { max-width: 1180px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.lg-logo { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 21px; color: var(--ink); font-style: italic; }
.lg-logo-mark { width: 30px; height: 30px; border-radius: 7px; background: var(--ink); color: var(--brass-bright); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 700; font-size: 15px; font-style: normal; }
.lg-nav-links { display: flex; align-items: center; gap: 30px; }
.lg-nav-links .lg-btn { display: none; }
.lg-nav-links a:not(.lg-btn) { font-size: 14px; font-weight: 600; color: var(--text-soft); position: relative; padding-bottom: 3px; }
.lg-nav-links a:not(.lg-btn):hover { color: var(--ink); }
.lg-nav-links a:not(.lg-btn)::after { content:''; position:absolute; left:0; right:100%; bottom:-1px; height:1.5px; background:var(--brass); transition:right .22s ease; }
.lg-nav-links a:not(.lg-btn):hover::after { right: 0; }
.lg-nav-actions { display: flex; align-items: center; gap: 10px; }
.lg-nav-hamburger { display: none; background: none; border: none; font-size: 22px; color: var(--ink); cursor: pointer; }

@media (max-width: 900px) {
    .lg-nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--rule); padding: 8px 28px 16px; }
    .lg-nav-links.open { display: flex; }
    .lg-nav-links a:not(.lg-btn) { padding: 12px 0; border-bottom: 1px solid var(--rule); }
    .lg-nav-links .lg-btn { display: inline-flex; margin-top: 12px; justify-content: center; }
    .lg-nav-hamburger { display: block; }
    .lg-nav-actions .lg-btn-ghost-ink { display: none; }
}

/* ===== HERO ===== */
.lg-hero {
    background: var(--ink);
    background-image:
        radial-gradient(ellipse 900px 500px at 85% -10%, rgba(169,130,76,.16), transparent 60%),
        linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
    padding: 88px 0 110px;
    position: relative;
    overflow: hidden;
}
.lg-hero::after {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(180deg, transparent 0, transparent 39px, rgba(237,232,218,.028) 40px);
    pointer-events: none;
}
.lg-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.lg-hero-grid > * { min-width: 0; }
@media (max-width: 980px) { .lg-hero-grid { grid-template-columns: 1fr; gap: 52px; } }

.lg-hero-title {
    font-size: clamp(36px, 4.6vw, 58px); font-weight: 600; line-height: 1.06; letter-spacing: -.015em;
    color: var(--text-on-ink); margin: 20px 0 22px;
}
.lg-hero-title em { color: var(--brass-bright); font-style: italic; }
.lg-hero-desc { font-size: 17.5px; line-height: 1.7; color: var(--text-on-ink-soft); max-width: 500px; margin-bottom: 34px; }
.lg-hero-desc strong { color: var(--text-on-ink); font-weight: 700; }
.lg-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.lg-hero-disclaimer { font-size: 12.5px; color: var(--text-on-ink-soft); display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.lg-hero-disclaimer span { display: inline-flex; align-items: center; gap: 6px; }

.lg-hero-stats { display: flex; flex-wrap: wrap; gap: 22px 0; border-top: 1px solid var(--rule-on-ink); padding-top: 26px; }
.lg-stat { flex: 1 1 42%; min-width: 110px; padding-right: 20px; }
.lg-stat:nth-child(odd) { border-left: none; padding-left: 0; }
.lg-stat:not(:first-child) { border-left: 1px solid var(--rule-on-ink); padding-left: 20px; }
@media (max-width: 460px) { .lg-stat:nth-child(3) { border-left: none; padding-left: 0; } }
.lg-stat-value { font-family: 'IBM Plex Mono', monospace; font-size: 25px; font-weight: 600; color: var(--brass-bright); }
.lg-stat-label { font-size: 11.5px; color: var(--text-on-ink-soft); margin-top: 4px; letter-spacing: .01em; }

/* ── SIGNATURE: the appointment ledger card ── */
.lg-ledger-wrap { position: relative; max-width: 100%; }
.lg-ledger {
    max-width: 100%;
    background: var(--paper);
    border-radius: 4px 14px 14px 4px;
    box-shadow: -1px 0 0 var(--brass), 0 30px 70px -20px rgba(0,0,0,.55), 0 10px 24px -10px rgba(0,0,0,.4);
    padding: 30px 30px 26px;
    transform: rotate(1.6deg);
    animation: lgLedgerIn .9s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes lgLedgerIn { from { opacity: 0; transform: rotate(1.6deg) translateY(22px) scale(.98); } to { opacity: 1; transform: rotate(1.6deg) translateY(0) scale(1); } }
.lg-ledger-head { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1.5px solid var(--ink); padding-bottom: 12px; margin-bottom: 4px; }
.lg-ledger-day { font-family: 'Fraunces', serif; font-style: italic; font-size: 19px; color: var(--ink); }
.lg-ledger-date { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--text-soft); }
.lg-ledger-row { display: grid; grid-template-columns: 52px minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--rule); }
.lg-ledger-name, .lg-ledger-svc { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lg-ledger-row:last-of-type { border-bottom: none; }
.lg-ledger-time { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--text-soft); }
.lg-ledger-name { font-family: 'Fraunces', serif; font-size: 15.5px; color: var(--ink); font-weight: 500; }
.lg-ledger-svc { font-size: 11.5px; color: var(--text-soft); margin-top: 1px; }
.lg-ledger-price { font-family: 'IBM Plex Mono', monospace; font-size: 13.5px; color: var(--text); text-align: right; }
.lg-ledger-row.empty .lg-ledger-time, .lg-ledger-row.empty .lg-ledger-name { color: var(--sage); }
.lg-ledger-row.empty .lg-ledger-name { font-style: italic; font-family: 'Manrope', sans-serif; font-size: 13px; }
.lg-stamp {
    position: absolute; top: -18px; right: 24px;
    width: 74px; height: 74px; border-radius: 50%;
    border: 2px solid var(--clay); color: var(--clay);
    display: flex; align-items: center; justify-content: center; text-align: center;
    font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    transform: rotate(-16deg);
    opacity: .88;
    background: rgba(255,255,255,.4);
    animation: lgStampIn .5s cubic-bezier(.2,1.4,.6,1) .8s both;
}
@keyframes lgStampIn { from { opacity: 0; transform: rotate(-16deg) scale(1.8); } to { opacity: .88; transform: rotate(-16deg) scale(1); } }
.lg-wa-note {
    margin-top: 18px; display: flex; align-items: center; gap: 10px;
    background: rgba(237,232,218,.06); border: 1px solid var(--rule-on-ink); border-radius: 9px; padding: 12px 14px;
}
.lg-wa-note i { color: #4EC988; font-size: 16px; }
.lg-wa-note span { font-size: 12.5px; color: var(--text-on-ink-soft); }
.lg-wa-note strong { color: var(--text-on-ink); }

/* ===== TRUST BAND ===== */
.lg-trust { background: var(--parchment); padding: 26px 0; border-bottom: 1px solid var(--rule); }
.lg-trust-inner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.lg-trust-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); white-space: nowrap; }
.lg-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--text-soft); font-weight: 600; position: relative; padding-left: 36px; }
.lg-trust-item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: var(--rule); }
.lg-trust-item i { color: var(--brass); }

/* ===== GENERIC SECTION ===== */
.lg-section { padding: 100px 0; }
.lg-section.tint { background: var(--parchment); }

/* ===== PROBLEM / SOLUTION ===== */
.lg-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .lg-compare { grid-template-columns: 1fr; gap: 32px; } }
.lg-compare-col { background: var(--paper); border: 1px solid var(--rule); border-radius: 4px; padding: 36px 34px; position: relative; box-shadow: 0 18px 40px -24px rgba(22,36,31,.25); }
.lg-compare-col::after {
    content: ''; position: absolute; top: 0; right: 0; width: 22px; height: 22px;
    background: linear-gradient(135deg, transparent 50%, var(--parchment) 50%);
    border-bottom-left-radius: 3px; box-shadow: -2px 2px 5px -2px rgba(22,36,31,.2);
}
.lg-compare-col.yes { border-color: rgba(100,115,90,.35); }
.lg-compare-list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.lg-compare-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); line-height: 1.55; }
.lg-compare-item i { flex-shrink: 0; margin-top: 3px; font-size: 15px; }
.lg-compare-item.no i { color: var(--clay); }
.lg-compare-item.yes i { color: var(--sage); }

/* ===== HOW IT WORKS (genuinely sequential → tab numerals justified) ===== */
.lg-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 8px; position: relative; }
@media (max-width: 860px) { .lg-steps { grid-template-columns: 1fr; } }
.lg-step { padding: 0 30px 0 0; position: relative; }
.lg-step:not(:last-child)::after {
    content: ''; position: absolute; top: 22px; right: 0; width: 30px; height: 1px; background: var(--rule);
    background-image: linear-gradient(to right, var(--rule) 60%, transparent 0); background-size: 8px 1px; background-repeat: repeat-x;
}
@media (max-width: 860px) { .lg-step:not(:last-child)::after { display: none; } }
.lg-step-tab { font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600; color: var(--brass); border: 1px solid var(--brass); border-radius: 4px; width: 30px; height: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.lg-step-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.lg-step-text { font-size: 14.5px; color: var(--text-soft); line-height: 1.65; }

/* ===== FEATURES (parallel capabilities → NOT numbered) ===== */
.lg-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
@media (max-width: 860px) { .lg-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lg-features { grid-template-columns: 1fr; } }
.lg-feature { background: var(--paper); padding: 30px 26px; position: relative; z-index: 0; transition: background .2s ease; }
.lg-feature:hover { background: var(--parchment); z-index: 1; }
.lg-feature-tag { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: .08em; color: var(--brass); text-transform: uppercase; margin-bottom: 16px; display: block; }
.lg-feature-title { font-family: 'Fraunces', serif; font-size: 18.5px; font-weight: 600; color: var(--ink); margin-bottom: 9px; }
.lg-feature-text { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ===== TESTIMONIALS — "panoya iğnelenmiş notlar" ===== */
.lg-testimonials-board {
    background-image: repeating-linear-gradient(var(--parchment-2) 0 1px, transparent 1px 34px);
    border-radius: 16px; padding: 46px 34px 34px;
}
.lg-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 24px; }
@media (max-width: 860px) { .lg-testimonials { grid-template-columns: 1fr; gap: 40px; } }
.lg-testimonial {
    background: var(--paper); border: 1px solid var(--rule); border-radius: 3px; padding: 30px 26px 26px;
    display: flex; flex-direction: column; position: relative;
    box-shadow: 0 14px 30px -14px rgba(22,36,31,.22);
    transition: transform .25s ease, box-shadow .25s ease;
}
.lg-testimonial:nth-child(1) { transform: rotate(-1.4deg); }
.lg-testimonial:nth-child(2) { transform: rotate(1deg); }
.lg-testimonial:nth-child(3) { transform: rotate(-0.6deg); }
.lg-testimonial:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 22px 40px -16px rgba(22,36,31,.3); }
.lg-testimonial::before {
    content: ''; position: absolute; top: -11px; left: 50%; transform: translateX(-50%) rotate(-3deg);
    width: 46px; height: 20px; background: rgba(169,130,76,.28); border: 1px solid rgba(169,130,76,.4);
}
.lg-testimonial-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 16.5px; line-height: 1.55; color: var(--ink); flex: 1; }
.lg-testimonial-quote::before { content: '“'; color: var(--brass); }
.lg-testimonial-quote::after { content: '”'; color: var(--brass); }
.lg-testimonial-foot { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--rule); }
.lg-testimonial-av { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--brass-bright); font-family: 'Fraunces', serif; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lg-testimonial-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.lg-testimonial-role { font-size: 12px; color: var(--text-soft); }

/* ===== SECTORS ===== */
.lg-sectors { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lg-sector-chip { display: flex; align-items: center; gap: 12px; padding: 9px 22px 9px 9px; border: 1px solid var(--rule); border-radius: 99px; font-size: 14px; font-weight: 600; color: var(--text); background: var(--paper); transition: all .18s ease; }
.lg-sector-chip:hover { border-color: var(--brass); color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(169,130,76,.45); }
.lg-sector-chip-ic { width: 36px; height: 36px; border-radius: 50%; background: var(--brass-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .18s ease; }
.lg-sector-chip:hover .lg-sector-chip-ic { background: var(--brass); }
.lg-sector-chip i { color: var(--brass); font-size: 15px; transition: color .18s ease; }
.lg-sector-chip:hover i { color: var(--paper); }

/* ===== PRICING ===== */
.lg-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 940px) { .lg-pricing { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.lg-price-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.lg-price-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -18px rgba(22,36,31,.22); border-color: var(--brass); }
.lg-price-card.popular { background: var(--ink); border-color: var(--ink); position: relative; transform: scale(1.02); }
.lg-price-card.popular:hover { transform: scale(1.02) translateY(-5px); box-shadow: 0 26px 50px -16px rgba(0,0,0,.5); border-color: var(--brass); }
@media (max-width: 940px) { .lg-price-card.popular { transform: none; } .lg-price-card.popular:hover { transform: translateY(-5px); } }
.lg-price-value { position: relative; }
.lg-price-value::after {
    content: ''; display: block; margin-top: 14px; height: 1px;
    background-image: linear-gradient(to right, var(--rule) 55%, transparent 0); background-size: 7px 1px; background-repeat: repeat-x;
}
.lg-price-card.popular .lg-price-value::after { background-image: linear-gradient(to right, var(--rule-on-ink) 55%, transparent 0); background-color: transparent; background-size: 7px 1px; background-repeat: repeat-x; }
.lg-price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brass); color: var(--paper); font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; font-weight: 600; letter-spacing: .05em; padding: 5px 14px; border-radius: 99px; white-space: nowrap; text-transform: uppercase; }
.lg-price-name { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--ink); }
.lg-price-card.popular .lg-price-name { color: var(--text-on-ink); }
.lg-price-value { font-family: 'IBM Plex Mono', monospace; font-size: 38px; font-weight: 600; color: var(--ink); margin: 14px 0 4px; }
.lg-price-card.popular .lg-price-value { color: var(--brass-bright); }
.lg-price-value span { font-size: 14px; font-weight: 400; color: var(--text-soft); font-family: 'Manrope', sans-serif; }
.lg-price-card.popular .lg-price-value span { color: var(--text-on-ink-soft); }
.lg-price-annual { font-size: 12px; color: var(--text-soft); margin-bottom: 18px; }
.lg-price-card.popular .lg-price-annual { color: var(--text-on-ink-soft); }
.lg-price-annual strong { color: var(--ink); }
.lg-price-card.popular .lg-price-annual strong { color: var(--text-on-ink); }
.lg-price-feats { display: flex; flex-direction: column; gap: 11px; margin: 18px 0 26px; flex: 1; }
.lg-price-feat { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--text); }
.lg-price-card.popular .lg-price-feat { color: var(--text-on-ink); }
.lg-price-feat i { color: var(--sage); margin-top: 2px; flex-shrink: 0; }
.lg-price-feat.no { opacity: .4; }
.lg-price-feat.no i { color: var(--text-soft); }

/* ===== FAQ ===== */
.lg-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.lg-faq-item { border-bottom: 1px solid var(--rule); border-left: 2px solid transparent; transition: border-color .25s ease; }
.lg-faq-item.open { border-left-color: var(--brass); }
.lg-faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 4px 22px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; color: var(--ink); transition: padding-left .25s ease; }
.lg-faq-item.open .lg-faq-q { padding-left: 22px; }
.lg-faq-q i { color: var(--brass); transition: transform .25s ease; flex-shrink: 0; }
.lg-faq-item.open .lg-faq-q i { transform: rotate(45deg); }
.lg-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.lg-faq-item.open .lg-faq-a { max-height: 300px; }
.lg-faq-a p { padding: 0 4px 22px 16px; font-size: 14.5px; color: var(--text-soft); line-height: 1.7; max-width: 640px; }

/* ===== FINAL CTA ===== */
.lg-final { background: var(--ink); border-radius: 20px; padding: 68px 40px; text-align: center; position: relative; overflow: hidden; }
.lg-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 700px 300px at 50% 0%, rgba(169,130,76,.18), transparent 65%); }
.lg-final-title { position: relative; font-size: clamp(28px, 3.6vw, 42px); font-weight: 600; color: var(--text-on-ink); margin: 18px auto 16px; max-width: 560px; }
.lg-final-sub { position: relative; font-size: 16px; color: var(--text-on-ink-soft); max-width: 480px; margin: 0 auto 34px; line-height: 1.65; }
.lg-final-actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.lg-final-badges { position: relative; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: 12.5px; color: var(--text-on-ink-soft); }
.lg-final-badges span { display: inline-flex; align-items: center; gap: 6px; }
.lg-final-badges i { color: var(--brass-bright); }

/* ===== FOOTER ===== */
.lg-footer { background: var(--ink-2); color: var(--text-on-ink-soft); padding: 64px 0 28px; }
.lg-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--rule-on-ink); }
@media (max-width: 780px) { .lg-footer-grid { grid-template-columns: 1fr 1fr; } }
.lg-footer-brand-name { font-family: 'Fraunces', serif; font-style: italic; font-size: 20px; color: var(--text-on-ink); margin-bottom: 12px; }
.lg-footer-desc { font-size: 13px; line-height: 1.7; max-width: 240px; }
.lg-footer-col h4 { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--brass-bright); margin-bottom: 16px; font-weight: 500; }
.lg-footer-col a { display: block; font-size: 13.5px; color: var(--text-on-ink-soft); margin-bottom: 11px; transition: color .15s; }
.lg-footer-col a:hover { color: var(--text-on-ink); }
.lg-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 12.5px; }
.lg-footer-bottom a { color: var(--text-on-ink-soft); margin-left: 18px; }
.lg-footer-bottom a:hover { color: var(--text-on-ink); }

/* ===== SCROLL REVEAL ===== */
.lg-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.lg-reveal.in { opacity: 1; transform: translateY(0); }
.lg-reveal-stagger.in .lg-reveal-child { opacity: 1; transform: translateY(0); }
.lg-reveal-child { opacity: 0; transform: translateY(14px); transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1); }
.lg-reveal-child:nth-child(1) { transition-delay: .04s; }
.lg-reveal-child:nth-child(2) { transition-delay: .12s; }
.lg-reveal-child:nth-child(3) { transition-delay: .2s; }
.lg-reveal-child:nth-child(4) { transition-delay: .28s; }
.lg-reveal-child:nth-child(5) { transition-delay: .36s; }
.lg-reveal-child:nth-child(6) { transition-delay: .44s; }

/* ===== MISC / A11Y ===== */
.lg :focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
    .lg-ledger, .lg-stamp { animation: none !important; }
    .lg-reveal, .lg-reveal-child { opacity: 1 !important; transform: none !important; transition: none !important; }
}
