@import url('https://fonts.googleapis.com/css2?family=Lora:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --lgr-bg-deep: #0f2b1a;
  --lgr-bg-brand: #1e4d33;
  --lgr-bg-cta: #2a6b45;
  --lgr-bg-light: #f5f1eb;
  --lgr-bg-white: #ffffff;
  --lgr-bg-dark-alt: #1a3d27;
  --lgr-text-ink: #1c1c1a;
  --lgr-text-sage: #5a6354;
  --lgr-text-on-dark: #e8e4da;
  --lgr-text-muted-dark: #8eb89b;
  --lgr-accent-amber: #b8821e;
  --lgr-border-warm: #d4cebc;
  --lgr-nav-h: 64px;
  --lgr-max-w: 1160px;
  --lgr-radius: 8px;
  --lgr-radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--lgr-text-ink);
  background: var(--lgr-bg-light);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.2;
  color: var(--lgr-text-ink);
}

.lgr-eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lgr-text-sage);
}

.lgr-eyebrow--light {
  color: var(--lgr-text-muted-dark);
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.lgr-container {
  max-width: var(--lgr-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.lgr-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.lgr-section--light {
  background: var(--lgr-bg-light);
}

.lgr-section--white {
  background: var(--lgr-bg-white);
}

.lgr-section--dark {
  background: var(--lgr-bg-deep);
}

.lgr-section--brand {
  background: var(--lgr-bg-brand);
}

.lgr-section--dark-alt {
  background: var(--lgr-bg-dark-alt);
}

.lgr-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.lgr-section__title {
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 16px;
}

.lgr-section__sub {
  font-size: 17px;
  color: var(--lgr-text-sage);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.lgr-section--dark .lgr-section__title,
.lgr-section--brand .lgr-section__title,
.lgr-section--dark-alt .lgr-section__title {
  color: var(--lgr-text-on-dark);
}

.lgr-section--dark .lgr-section__sub,
.lgr-section--brand .lgr-section__sub,
.lgr-section--dark-alt .lgr-section__sub {
  color: var(--lgr-text-muted-dark);
}

/* =============================================
   BUTTONS
   ============================================= */
.lgr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--lgr-radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  white-space: nowrap;
  text-decoration: none;
}

.lgr-btn:hover { transform: translateY(-1px); }
.lgr-btn:active { transform: translateY(0); }

.lgr-btn--primary {
  background: var(--lgr-bg-cta);
  color: #ffffff;
  border-color: var(--lgr-bg-cta);
}
.lgr-btn--primary:hover { background: #1e4d33; border-color: #1e4d33; }

.lgr-btn--outline-light {
  background: transparent;
  color: var(--lgr-text-on-dark);
  border-color: rgba(232, 228, 218, 0.5);
}
.lgr-btn--outline-light:hover {
  background: rgba(232, 228, 218, 0.12);
  border-color: var(--lgr-text-on-dark);
}

.lgr-btn--outline-dark {
  background: transparent;
  color: var(--lgr-text-ink);
  border-color: rgba(28, 28, 26, 0.25);
}
.lgr-btn--outline-dark:hover {
  background: rgba(28, 28, 26, 0.04);
  border-color: rgba(28, 28, 26, 0.45);
}

.lgr-btn--ghost-on-dark {
  background: transparent;
  color: var(--lgr-text-on-dark);
  border-color: transparent;
}
.lgr-btn--ghost-on-dark:hover { background: rgba(232, 228, 218, 0.1); }

.lgr-btn--sm {
  padding: 9px 20px;
  font-size: 14px;
}

.lgr-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.lgr-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--lgr-bg-brand);
  height: var(--lgr-nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(142, 184, 155, 0.12);
}

.lgr-nav__inner {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.lgr-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lgr-nav__logo img {
  height: 32px;
  width: auto;
}

.lgr-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.lgr-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--lgr-text-on-dark);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  opacity: 0.85;
}
.lgr-nav__link:hover, .lgr-nav__link--active {
  background: rgba(232, 228, 218, 0.1);
  opacity: 1;
}

.lgr-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  flex-shrink: 0;
}

.lgr-nav__signin {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lgr-text-on-dark);
  border: 1px solid rgba(232, 228, 218, 0.4);
  border-radius: 6px;
  transition: background 0.15s, border-color 0.15s;
  opacity: 0.9;
}
.lgr-nav__signin:hover {
  background: rgba(232, 228, 218, 0.1);
  opacity: 1;
  border-color: rgba(232, 228, 218, 0.7);
}

.lgr-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}

.lgr-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lgr-text-on-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.lgr-nav--open .lgr-nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lgr-nav--open .lgr-nav__hamburger span:nth-child(2) {
  opacity: 0;
}
.lgr-nav--open .lgr-nav__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .lgr-nav__links,
  .lgr-nav__actions {
    display: none;
  }
  .lgr-nav__hamburger {
    display: flex;
  }
  .lgr-nav--open .lgr-nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--lgr-nav-h);
    left: 0;
    right: 0;
    background: var(--lgr-bg-brand);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(142, 184, 155, 0.15);
    align-items: flex-start;
  }
  .lgr-nav--open .lgr-nav__actions {
    display: flex;
    position: absolute;
    top: calc(var(--lgr-nav-h) + 16px + var(--lgr-mobile-links-h, 240px));
    left: 0;
    right: 0;
    padding: 0 24px 24px;
    background: var(--lgr-bg-brand);
  }
  .lgr-nav--open .lgr-nav__actions {
    top: auto;
    bottom: auto;
  }
  .lgr-nav--open {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 16px;
  }
  .lgr-nav--open .lgr-nav__inner {
    flex-wrap: wrap;
    height: auto;
  }
}

/* =============================================
   HERO (HOMEPAGE)
   ============================================= */
.lgr-hero {
  background: var(--lgr-bg-deep);
  padding-top: calc(var(--lgr-nav-h) + 72px);
  padding-bottom: 80px;
}

.lgr-hero__inner {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.lgr-hero__text {
  max-width: 680px;
}

.lgr-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(142, 184, 155, 0.12);
  border: 1px solid rgba(142, 184, 155, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lgr-text-muted-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lgr-hero__kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lgr-text-muted-dark);
  animation: lgr-pulse 2s ease-in-out infinite;
}

@keyframes lgr-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.lgr-hero__h1 {
  font-size: clamp(42px, 6vw, 58px);
  font-weight: 700;
  color: var(--lgr-text-on-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lgr-hero__h1 em {
  font-style: normal;
  color: var(--lgr-text-muted-dark);
}

.lgr-hero__sub {
  font-size: 17px;
  color: var(--lgr-text-muted-dark);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.lgr-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lgr-hero__note {
  font-size: 13px;
  color: var(--lgr-text-muted-dark);
  margin-top: 12px;
  opacity: 0.7;
}

/* =============================================
   LEDGER MOCK (HERO VISUAL)
   ============================================= */
.lgr-ledger-mock {
  background: var(--lgr-bg-white);
  border-radius: var(--lgr-radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.25);
  border: 1px solid rgba(232, 228, 218, 0.08);
}

.lgr-ledger-mock__header {
  background: var(--lgr-bg-brand);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lgr-ledger-mock__header-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--lgr-text-on-dark);
}

.lgr-ledger-mock__header-meta {
  font-size: 12px;
  color: var(--lgr-text-muted-dark);
}

.lgr-ledger-mock__table {
  width: 100%;
  border-collapse: collapse;
}

.lgr-ledger-mock__table thead {
  background: #f8f6f2;
  border-bottom: 1px solid var(--lgr-border-warm);
}

.lgr-ledger-mock__table th {
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lgr-text-sage);
  text-align: left;
}

.lgr-ledger-mock__table th:last-child {
  text-align: right;
}

.lgr-ledger-mock__table td {
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--lgr-text-ink);
  border-bottom: 1px solid #f0ece4;
}

.lgr-ledger-mock__table td:last-child {
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.lgr-ledger-mock__table tr:last-child td {
  border-bottom: none;
}

.lgr-ledger-mock__table tr:hover td {
  background: #faf8f4;
}

.lgr-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lgr-badge--bahan-baku {
  background: #d4edda;
  color: #166534;
}

.lgr-badge--operasional {
  background: #e2e8f0;
  color: #374151;
}

.lgr-badge--marketing {
  background: #fef3c7;
  color: #92400e;
}

.lgr-badge--penggajian {
  background: #ede9fe;
  color: #5b21b6;
}

.lgr-badge--pemasukan {
  background: #ccfbf1;
  color: #134e4a;
}

.lgr-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.lgr-typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lgr-text-sage);
  animation: lgr-typing 1.2s ease-in-out infinite;
}

.lgr-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.lgr-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes lgr-typing {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

.lgr-ledger-mock__footer {
  background: var(--lgr-bg-brand);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lgr-ledger-mock__footer-label {
  font-size: 12px;
  color: var(--lgr-text-muted-dark);
  font-weight: 500;
}

.lgr-ledger-mock__footer-value {
  font-size: 12px;
  color: var(--lgr-text-on-dark);
  font-weight: 600;
}

.lgr-ledger-mock__footer-sep {
  color: rgba(142, 184, 155, 0.35);
}

/* =============================================
   TRUST STRIP
   ============================================= */
.lgr-trust {
  background: var(--lgr-bg-brand);
  padding: 20px 0;
}

.lgr-trust__inner {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.lgr-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lgr-trust__stat {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Lora', Georgia, serif;
  color: var(--lgr-text-on-dark);
}

.lgr-trust__label {
  font-size: 12px;
  color: var(--lgr-text-muted-dark);
  line-height: 1.3;
}

.lgr-trust__divider {
  width: 1px;
  height: 28px;
  background: rgba(142, 184, 155, 0.25);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.lgr-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lgr-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.lgr-step__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lgr-bg-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.lgr-section--dark .lgr-step__num {
  background: rgba(42, 107, 69, 0.4);
  border: 1px solid rgba(42, 107, 69, 0.5);
  color: var(--lgr-text-muted-dark);
}

.lgr-step__title {
  font-size: 17px;
  font-weight: 600;
  font-family: 'Lora', Georgia, serif;
  color: var(--lgr-text-ink);
  margin-bottom: 6px;
}

.lgr-section--dark .lgr-step__title {
  color: var(--lgr-text-on-dark);
}

.lgr-step__body {
  font-size: 15px;
  color: var(--lgr-text-sage);
  line-height: 1.65;
}

.lgr-section--dark .lgr-step__body {
  color: var(--lgr-text-muted-dark);
}

.lgr-step__visual {
  background: #f8f6f2;
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius);
  padding: 16px;
  width: 100%;
  min-height: 100px;
  margin-top: 8px;
}

.lgr-section--dark .lgr-step__visual {
  background: rgba(255,255,255,0.04);
  border-color: rgba(142, 184, 155, 0.12);
}

.lgr-step__visual-code {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--lgr-text-sage);
  line-height: 1.8;
}

.lgr-step__visual-code .lgr-code-key {
  color: var(--lgr-bg-cta);
}

.lgr-section--dark .lgr-step__visual-code {
  color: var(--lgr-text-muted-dark);
}

.lgr-section--dark .lgr-step__visual-code .lgr-code-key {
  color: #6fc28a;
}

@media (max-width: 768px) {
  .lgr-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================================
   FEATURES
   ============================================= */
.lgr-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lgr-feature-card {
  background: var(--lgr-bg-white);
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.lgr-feature-card:hover {
  box-shadow: 0 8px 32px rgba(30, 77, 51, 0.1);
  border-color: rgba(42, 107, 69, 0.3);
}

.lgr-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(42, 107, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lgr-bg-cta);
  font-size: 20px;
}

.lgr-feature-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-bottom: 10px;
}

.lgr-feature-card__body {
  font-size: 15px;
  color: var(--lgr-text-sage);
  line-height: 1.65;
}

.lgr-feature-card__tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lgr-bg-cta);
  border: 1px solid rgba(42, 107, 69, 0.3);
  border-radius: 4px;
  padding: 3px 8px;
}

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

/* Sub-page features (with scene image) */
.lgr-features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lgr-features-layout--flip {
  direction: rtl;
}
.lgr-features-layout--flip > * {
  direction: ltr;
}

.lgr-features-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lgr-feature-item {
  display: flex;
  gap: 16px;
}

.lgr-feature-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(42, 107, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lgr-bg-cta);
  font-size: 18px;
}

.lgr-feature-item__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-bottom: 4px;
}

.lgr-feature-item__body {
  font-size: 14px;
  color: var(--lgr-text-sage);
  line-height: 1.65;
}

.lgr-features-scene {
  border-radius: var(--lgr-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.lgr-features-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .lgr-features-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lgr-features-layout--flip {
    direction: ltr;
  }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.lgr-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lgr-testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(142, 184, 155, 0.15);
  border-radius: var(--lgr-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lgr-testimonial-card__stars {
  color: var(--lgr-accent-amber);
  font-size: 14px;
  letter-spacing: 2px;
}

.lgr-testimonial-card__quote {
  font-size: 15px;
  color: var(--lgr-text-on-dark);
  line-height: 1.7;
  flex: 1;
}

.lgr-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lgr-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(42, 107, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--lgr-text-on-dark);
  overflow: hidden;
  flex-shrink: 0;
}

.lgr-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lgr-testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--lgr-text-on-dark);
}

.lgr-testimonial-card__role {
  font-size: 12px;
  color: var(--lgr-text-muted-dark);
}

@media (max-width: 768px) {
  .lgr-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   PRICING
   ============================================= */
.lgr-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.lgr-pricing-card {
  background: var(--lgr-bg-white);
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow 0.2s;
}

.lgr-pricing-card:hover {
  box-shadow: 0 8px 32px rgba(30, 77, 51, 0.1);
}

.lgr-pricing-card--featured {
  border-color: var(--lgr-bg-cta);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(42, 107, 69, 0.15);
}

.lgr-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lgr-bg-cta);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.lgr-pricing-card__tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgr-text-sage);
  margin-bottom: 12px;
}

.lgr-pricing-card__price {
  margin-bottom: 6px;
}

.lgr-pricing-card__amount {
  font-family: 'Lora', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--lgr-text-ink);
  line-height: 1;
}

.lgr-pricing-card__currency {
  font-size: 18px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.lgr-pricing-card__period {
  font-size: 14px;
  color: var(--lgr-text-sage);
  margin-bottom: 20px;
}

.lgr-pricing-card__desc {
  font-size: 14px;
  color: var(--lgr-text-sage);
  margin-bottom: 24px;
  line-height: 1.55;
}

.lgr-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.lgr-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lgr-text-ink);
}

.lgr-pricing-feature__check {
  color: var(--lgr-bg-cta);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.lgr-pricing-feature--muted {
  color: var(--lgr-text-sage);
}

.lgr-pricing-feature--muted .lgr-pricing-feature__check {
  color: var(--lgr-border-warm);
}

.lgr-pricing-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .lgr-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Pricing toggle */
.lgr-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.lgr-pricing-toggle__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--lgr-text-sage);
}

.lgr-pricing-toggle__label--active {
  color: var(--lgr-text-ink);
  font-weight: 600;
}

.lgr-pricing-toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 100px;
  background: var(--lgr-bg-cta);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.lgr-pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.2s;
}

.lgr-pricing-toggle__switch--annual::after {
  transform: translateX(20px);
}

.lgr-pricing-toggle__save {
  display: inline-block;
  background: rgba(42, 107, 69, 0.12);
  color: var(--lgr-bg-cta);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   FAQ
   ============================================= */
.lgr-faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lgr-faq-item {
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius);
  background: var(--lgr-bg-white);
  overflow: hidden;
}

.lgr-faq-item + .lgr-faq-item {
  margin-top: -1px;
}

.lgr-faq-item:first-child { border-radius: var(--lgr-radius) var(--lgr-radius) 0 0; }
.lgr-faq-item:last-child { border-radius: 0 0 var(--lgr-radius) var(--lgr-radius); }
.lgr-faq-item:only-child { border-radius: var(--lgr-radius); }

.lgr-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  cursor: pointer;
  transition: background 0.15s;
}

.lgr-faq-item__trigger:hover {
  background: #faf8f4;
}

.lgr-faq-item__icon {
  font-size: 18px;
  color: var(--lgr-text-sage);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.lgr-faq-item--open .lgr-faq-item__icon {
  transform: rotate(45deg);
}

.lgr-faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lgr-faq-item--open .lgr-faq-item__panel {
  max-height: 400px;
}

.lgr-faq-item__body {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--lgr-text-sage);
  line-height: 1.7;
}

/* Dark section FAQ variant */
.lgr-section--dark .lgr-faq-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(142, 184, 155, 0.12);
}

.lgr-section--dark .lgr-faq-item__trigger {
  color: var(--lgr-text-on-dark);
}

.lgr-section--dark .lgr-faq-item__trigger:hover {
  background: rgba(255,255,255,0.04);
}

.lgr-section--dark .lgr-faq-item__icon {
  color: var(--lgr-text-muted-dark);
}

.lgr-section--dark .lgr-faq-item__body {
  color: var(--lgr-text-muted-dark);
}

/* =============================================
   CTA BANNER
   ============================================= */
.lgr-cta-banner {
  background: var(--lgr-bg-deep);
  padding: 80px 0;
}

.lgr-cta-banner__inner {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.lgr-cta-banner__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--lgr-text-on-dark);
  margin-top: 12px;
  margin-bottom: 16px;
}

.lgr-cta-banner__sub {
  font-size: 16px;
  color: var(--lgr-text-muted-dark);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.lgr-cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lgr-cta-banner__note {
  font-size: 13px;
  color: var(--lgr-text-muted-dark);
  margin-top: 14px;
  opacity: 0.65;
}

/* =============================================
   FOOTER
   ============================================= */
.lgr-footer {
  background: var(--lgr-bg-deep);
  border-top: 1px solid rgba(142, 184, 155, 0.1);
  padding: 64px 0 40px;
}

.lgr-footer__inner {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.lgr-footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.lgr-footer__brand-logo {
  display: block;
  margin-bottom: 14px;
}

.lgr-footer__brand-logo img {
  height: 28px;
  width: auto;
}

.lgr-footer__tagline {
  font-size: 14px;
  color: var(--lgr-text-muted-dark);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 240px;
}

.lgr-footer__address {
  font-size: 13px;
  color: var(--lgr-text-muted-dark);
  line-height: 1.7;
  opacity: 0.8;
  font-style: normal;
}

.lgr-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgr-text-on-dark);
  margin-bottom: 16px;
}

.lgr-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lgr-footer__link {
  font-size: 14px;
  color: var(--lgr-text-muted-dark);
  transition: color 0.15s;
}
.lgr-footer__link:hover {
  color: var(--lgr-text-on-dark);
}

.lgr-footer__bottom {
  border-top: 1px solid rgba(142, 184, 155, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lgr-footer__copy {
  font-size: 13px;
  color: var(--lgr-text-muted-dark);
  opacity: 0.7;
}

.lgr-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lgr-footer__legal-link {
  font-size: 13px;
  color: var(--lgr-text-muted-dark);
  transition: color 0.15s;
  opacity: 0.7;
}
.lgr-footer__legal-link:hover {
  color: var(--lgr-text-on-dark);
  opacity: 1;
}

@media (max-width: 768px) {
  .lgr-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .lgr-footer__brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .lgr-footer__top {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   PAGE HERO (SUB-PAGES)
   ============================================= */
.lgr-page-hero {
  background: var(--lgr-bg-brand);
  padding-top: calc(var(--lgr-nav-h) + 64px);
  padding-bottom: 64px;
}

.lgr-page-hero__inner {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.lgr-page-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lgr-text-muted-dark);
  margin-bottom: 14px;
}

.lgr-page-hero__title {
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 700;
  color: var(--lgr-text-on-dark);
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.lgr-page-hero__sub {
  font-size: 17px;
  color: var(--lgr-text-muted-dark);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.lgr-page-hero__anchor {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Stats band anchor in sub-hero */
.lgr-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.lgr-hero-stat {
  text-align: center;
}

.lgr-hero-stat__num {
  font-family: 'Lora', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--lgr-text-on-dark);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.lgr-hero-stat__label {
  font-size: 12px;
  color: var(--lgr-text-muted-dark);
}

.lgr-hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(142, 184, 155, 0.2);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.lgr-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lgr-about-story__body {
  font-size: 16px;
  color: var(--lgr-text-sage);
  line-height: 1.75;
}

.lgr-about-story__body p + p {
  margin-top: 16px;
}

.lgr-about-story__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-bottom: 16px;
}

.lgr-about-scene {
  border-radius: var(--lgr-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
}

.lgr-about-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .lgr-about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.lgr-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lgr-value-card {
  background: var(--lgr-bg-white);
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius-lg);
  padding: 28px;
}

.lgr-value-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(42, 107, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--lgr-bg-cta);
  font-size: 18px;
}

.lgr-value-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-bottom: 8px;
}

.lgr-value-card__body {
  font-size: 14px;
  color: var(--lgr-text-sage);
  line-height: 1.65;
}

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

.lgr-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lgr-team-card {
  text-align: center;
}

.lgr-team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: rgba(42, 107, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lgr-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lgr-team-card__initials {
  font-size: 22px;
  font-weight: 700;
  color: var(--lgr-bg-cta);
  font-family: 'Lora', Georgia, serif;
}

.lgr-team-card__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-bottom: 4px;
}

.lgr-team-card__role {
  font-size: 13px;
  color: var(--lgr-text-sage);
  margin-bottom: 8px;
}

.lgr-team-card__bio {
  font-size: 14px;
  color: var(--lgr-text-sage);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .lgr-team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.lgr-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.lgr-contact-info__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-bottom: 14px;
}

.lgr-contact-info__body {
  font-size: 15px;
  color: var(--lgr-text-sage);
  line-height: 1.65;
  margin-bottom: 32px;
}

.lgr-contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lgr-contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lgr-contact-detail__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(42, 107, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lgr-bg-cta);
  font-size: 15px;
  flex-shrink: 0;
}

.lgr-contact-detail__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lgr-text-sage);
  margin-bottom: 2px;
}

.lgr-contact-detail__value {
  font-size: 14px;
  color: var(--lgr-text-ink);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .lgr-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================================
   FORMS
   ============================================= */
.lgr-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lgr-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lgr-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--lgr-text-ink);
}

.lgr-form__input,
.lgr-form__select,
.lgr-form__textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--lgr-text-ink);
  background: var(--lgr-bg-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.lgr-form__input:focus,
.lgr-form__select:focus,
.lgr-form__textarea:focus {
  outline: none;
  border-color: var(--lgr-bg-cta);
  box-shadow: 0 0 0 3px rgba(42, 107, 69, 0.12);
}

.lgr-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.lgr-form__submit {
  width: 100%;
  justify-content: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.lgr-form__success {
  padding: 16px;
  background: rgba(42, 107, 69, 0.08);
  border: 1px solid rgba(42, 107, 69, 0.2);
  border-radius: var(--lgr-radius);
  color: var(--lgr-bg-cta);
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.lgr-form__success--visible {
  display: block;
}

.lgr-form__error {
  font-size: 13px;
  color: #c62828;
  display: none;
}

.lgr-form__error--visible {
  display: block;
}

/* =============================================
   AUTH PAGES (FULLSCREEN CARD)
   ============================================= */
.lgr-auth-page {
  min-height: 100vh;
  background: var(--lgr-bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.lgr-auth-logo {
  margin-bottom: 32px;
}

.lgr-auth-logo img {
  height: 32px;
  width: auto;
}

.lgr-auth-card {
  background: var(--lgr-bg-white);
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius-lg);
  padding: 40px 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 24px rgba(28, 28, 26, 0.08);
}

.lgr-auth-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--lgr-text-ink);
  margin-bottom: 6px;
}

.lgr-auth-card__sub {
  font-size: 14px;
  color: var(--lgr-text-sage);
  margin-bottom: 28px;
}

.lgr-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lgr-auth-form__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lgr-auth-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--lgr-text-ink);
}

.lgr-auth-form__input {
  padding: 10px 13px;
  border: 1.5px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--lgr-text-ink);
  background: var(--lgr-bg-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.lgr-auth-form__input:focus {
  outline: none;
  border-color: var(--lgr-bg-cta);
  box-shadow: 0 0 0 3px rgba(42, 107, 69, 0.1);
}

.lgr-auth-form__submit {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 15px;
  margin-top: 4px;
}

.lgr-auth-form__forgot {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--lgr-bg-cta);
  margin-top: -8px;
}
.lgr-auth-form__forgot:hover {
  text-decoration: underline;
}

.lgr-auth-form__error {
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  font-size: 14px;
  color: #c62828;
  display: none;
}

.lgr-auth-form__error--visible {
  display: block;
}

.lgr-auth-form__success {
  text-align: center;
  display: none;
}

.lgr-auth-form__success--visible {
  display: block;
}

.lgr-auth-form__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(42, 107, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--lgr-bg-cta);
  font-size: 24px;
}

.lgr-auth-form__success-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-bottom: 8px;
}

.lgr-auth-form__success-body {
  font-size: 14px;
  color: var(--lgr-text-sage);
  line-height: 1.65;
  margin-bottom: 20px;
}

.lgr-auth-links {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--lgr-text-sage);
}

.lgr-auth-links a {
  color: var(--lgr-bg-cta);
  font-weight: 500;
}
.lgr-auth-links a:hover { text-decoration: underline; }

.lgr-auth-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--lgr-text-sage);
}

.lgr-auth-footer a {
  color: var(--lgr-text-sage);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .lgr-auth-card {
    padding: 28px 24px;
  }
}

/* =============================================
   BLOG LISTING
   ============================================= */
.lgr-blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
  background: var(--lgr-bg-white);
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius-lg);
  overflow: hidden;
}

.lgr-blog-featured__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.lgr-blog-featured__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.lgr-blog-featured:hover .lgr-blog-featured__cover img {
  transform: scale(1.03);
}

.lgr-blog-featured__content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lgr-blog-featured__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgr-bg-cta);
  border: 1px solid rgba(42, 107, 69, 0.3);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.lgr-blog-featured__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--lgr-text-ink);
  line-height: 1.25;
  margin-bottom: 12px;
}

.lgr-blog-featured__title a {
  color: inherit;
  transition: color 0.15s;
}
.lgr-blog-featured__title a:hover { color: var(--lgr-bg-cta); }

.lgr-blog-featured__excerpt {
  font-size: 15px;
  color: var(--lgr-text-sage);
  line-height: 1.65;
  margin-bottom: 20px;
}

.lgr-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--lgr-text-sage);
}

.lgr-blog-featured__date {
  font-size: 13px;
  color: var(--lgr-text-sage);
}

.lgr-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lgr-blog-card {
  background: var(--lgr-bg-white);
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.lgr-blog-card:hover {
  box-shadow: 0 8px 24px rgba(28, 28, 26, 0.08);
  border-color: rgba(42, 107, 69, 0.25);
}

.lgr-blog-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.lgr-blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.lgr-blog-card:hover .lgr-blog-card__cover img {
  transform: scale(1.04);
}

.lgr-blog-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lgr-blog-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgr-bg-cta);
  margin-bottom: 8px;
}

.lgr-blog-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lgr-text-ink);
  line-height: 1.35;
  margin-bottom: 8px;
  flex: 1;
}

.lgr-blog-card__title a {
  color: inherit;
  transition: color 0.15s;
}
.lgr-blog-card__title a:hover { color: var(--lgr-bg-cta); }

.lgr-blog-card__excerpt {
  font-size: 13.5px;
  color: var(--lgr-text-sage);
  line-height: 1.6;
  margin-bottom: 14px;
}

.lgr-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--lgr-text-sage);
  margin-top: auto;
}

.lgr-blog-card__date {
  font-size: 12px;
  color: var(--lgr-text-sage);
}

.lgr-blog-card__readmore {
  font-size: 13px;
  font-weight: 600;
  color: var(--lgr-bg-cta);
}
.lgr-blog-card__readmore:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .lgr-blog-featured {
    grid-template-columns: 1fr;
  }
  .lgr-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .lgr-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ARTICLE TEMPLATE (BLOG ARTICLE)
   ============================================= */
.lgr-article-hero {
  background: var(--lgr-bg-brand);
  padding-top: calc(var(--lgr-nav-h) + 48px);
  padding-bottom: 48px;
}

.lgr-article-hero__inner {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.lgr-article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lgr-text-muted-dark);
  margin-bottom: 24px;
  transition: color 0.15s;
  text-decoration: none;
}
.lgr-article-back:hover { color: var(--lgr-text-on-dark); }

.lgr-article-hero__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgr-text-muted-dark);
  border: 1px solid rgba(142, 184, 155, 0.3);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.lgr-article-hero__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--lgr-text-on-dark);
  line-height: 1.2;
  max-width: 760px;
  margin-bottom: 16px;
}

.lgr-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lgr-article-hero__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lgr-article-hero__author-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(142, 184, 155, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lgr-article-hero__author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lgr-article-hero__author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--lgr-text-on-dark);
}

.lgr-article-hero__date {
  font-size: 14px;
  color: var(--lgr-text-muted-dark);
}

.lgr-article-hero__read-time {
  font-size: 14px;
  color: var(--lgr-text-muted-dark);
}

.lgr-article-hero__sep {
  color: rgba(142, 184, 155, 0.3);
}

.lgr-article-cover {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.lgr-article-cover__img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--lgr-radius-lg);
  overflow: hidden;
  aspect-ratio: 1200/630;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.lgr-article-cover__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lgr-article-body {
  background: var(--lgr-bg-white);
  padding: 64px 0 96px;
}

.lgr-article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.lgr-article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--lgr-text-ink);
  margin-top: 40px;
  margin-bottom: 12px;
}

.lgr-article-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-top: 28px;
  margin-bottom: 10px;
}

.lgr-article-content p {
  font-size: 16px;
  color: var(--lgr-text-ink);
  line-height: 1.75;
  margin-bottom: 16px;
}

.lgr-article-content ul,
.lgr-article-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.lgr-article-content ol {
  list-style: decimal;
}

.lgr-article-content li {
  font-size: 16px;
  color: var(--lgr-text-ink);
  line-height: 1.75;
  margin-bottom: 6px;
}

.lgr-article-content blockquote {
  border-left: 3px solid var(--lgr-bg-cta);
  padding: 4px 20px;
  margin: 24px 0;
  background: rgba(42, 107, 69, 0.05);
  border-radius: 0 6px 6px 0;
  font-size: 16px;
  color: var(--lgr-text-sage);
  font-style: italic;
  line-height: 1.7;
}

.lgr-article-content a {
  color: var(--lgr-bg-cta);
  text-decoration: underline;
}

.lgr-article-content pre {
  background: #1a1a1a;
  color: #e8e4da;
  padding: 20px;
  border-radius: var(--lgr-radius);
  font-size: 13.5px;
  line-height: 1.65;
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 16px;
}

.lgr-article-content code {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  background: #f0ece4;
  color: var(--lgr-text-ink);
  padding: 1px 5px;
  border-radius: 3px;
}

.lgr-article-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

/* Author byline at article bottom */
.lgr-article-byline {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 28px 24px;
  background: #f8f6f2;
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.lgr-article-byline__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(42, 107, 69, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lgr-article-byline__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lgr-article-byline__initials {
  font-size: 18px;
  font-weight: 700;
  color: var(--lgr-bg-cta);
}

.lgr-article-byline__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lgr-text-ink);
  margin-bottom: 2px;
}

.lgr-article-byline__role {
  font-size: 13px;
  color: var(--lgr-text-sage);
  margin-bottom: 8px;
}

.lgr-article-byline__bio {
  font-size: 14px;
  color: var(--lgr-text-sage);
  line-height: 1.65;
}

/* Article tags */
.lgr-article-tags {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lgr-article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(42, 107, 69, 0.07);
  border: 1px solid rgba(42, 107, 69, 0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--lgr-bg-cta);
}

/* =============================================
   LEGAL CONTENT (abw-legal drops in here)
   ============================================= */
.lgr-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  background: var(--lgr-bg-white);
  color: var(--lgr-text-ink);
}

.lgr-legal-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--lgr-text-ink);
  margin-bottom: 8px;
}

.lgr-legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-top: 40px;
  margin-bottom: 12px;
}

.lgr-legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-top: 24px;
  margin-bottom: 8px;
}

.lgr-legal-content p {
  font-size: 15px;
  color: var(--lgr-text-sage);
  line-height: 1.75;
  margin-bottom: 14px;
}

.lgr-legal-content ul, .lgr-legal-content ol {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.lgr-legal-content li {
  font-size: 15px;
  color: var(--lgr-text-sage);
  line-height: 1.75;
  margin-bottom: 6px;
}

.lgr-legal-content .lgr-legal-updated {
  font-size: 13px;
  color: var(--lgr-text-sage);
  margin-bottom: 40px;
}

/* =============================================
   COOKIE BANNER (abw-legal wires JS; we style)
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--lgr-bg-deep);
  border-top: 1px solid rgba(142, 184, 155, 0.15);
  padding: 16px 0;
  animation: lgr-slide-up 0.3s ease;
}

@keyframes lgr-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-banner__inner {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 14px;
  color: var(--lgr-text-muted-dark);
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--lgr-text-on-dark);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.cookie-banner__btn--primary {
  background: var(--lgr-bg-cta);
  color: #ffffff;
  border-color: var(--lgr-bg-cta);
}
.cookie-banner__btn--primary:hover {
  background: #1e4d33;
  border-color: #1e4d33;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--lgr-text-on-dark);
  border-color: rgba(232, 228, 218, 0.35);
}
.cookie-banner__btn--secondary:hover {
  background: rgba(232, 228, 218, 0.08);
  border-color: rgba(232, 228, 218, 0.6);
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.lgr-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lgr-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.lgr-comparison-table th {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: #f8f6f2;
  border-bottom: 2px solid var(--lgr-border-warm);
  color: var(--lgr-text-ink);
}

.lgr-comparison-table th:first-child {
  text-align: left;
  background: transparent;
  color: var(--lgr-text-sage);
}

.lgr-comparison-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--lgr-text-ink);
  border-bottom: 1px solid #f0ece4;
  text-align: center;
}

.lgr-comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--lgr-text-sage);
}

.lgr-comparison-table .lgr-check { color: var(--lgr-bg-cta); }
.lgr-comparison-table .lgr-dash { color: var(--lgr-border-warm); }

/* =============================================
   INTEGRATION CARDS
   ============================================= */
.lgr-integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lgr-integration-card {
  background: var(--lgr-bg-white);
  border: 1px solid var(--lgr-border-warm);
  border-radius: var(--lgr-radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.2s;
}

.lgr-integration-card:hover {
  box-shadow: 0 4px 16px rgba(28, 28, 26, 0.08);
}

.lgr-integration-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f8f6f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--lgr-bg-cta);
}

.lgr-integration-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--lgr-text-ink);
}

.lgr-integration-card__status {
  font-size: 11px;
  color: var(--lgr-text-sage);
}

@media (max-width: 640px) {
  .lgr-integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   ANIMATIONS & UTILITIES
   ============================================= */
.lgr-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lgr-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.lgr-text-center { text-align: center; }
.lgr-mt-auto { margin-top: auto; }

.lgr-divider {
  border: none;
  border-top: 1px solid var(--lgr-border-warm);
  margin: 48px 0;
}

.lgr-divider--dark {
  border-top-color: rgba(142, 184, 155, 0.12);
}

/* =============================================
   PAGE PADDING-TOP (for fixed nav)
   ============================================= */
.lgr-page--dark-top main,
.lgr-page--light-top main {
  padding-top: 0;
}

.lgr-page--light-top .lgr-page-hero,
.lgr-page--light-top .lgr-blog-hero,
.lgr-page--light-top .lgr-article-hero {
  padding-top: calc(var(--lgr-nav-h) + 64px);
}

/* =============================================
   BLOG SECTION HEADER (listing page)
   ============================================= */
.lgr-blog-hero {
  background: var(--lgr-bg-brand);
  padding-top: calc(var(--lgr-nav-h) + 64px);
  padding-bottom: 56px;
}

.lgr-blog-hero__inner {
  max-width: var(--lgr-max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.lgr-blog-hero__title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--lgr-text-on-dark);
  margin-top: 12px;
  margin-bottom: 14px;
}

.lgr-blog-hero__sub {
  font-size: 17px;
  color: var(--lgr-text-muted-dark);
  max-width: 480px;
  margin: 0 auto;
}

/* =============================================
   MISC HELPERS
   ============================================= */
.lgr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--lgr-text-sage);
}

.lgr-breadcrumb__sep {
  color: var(--lgr-border-warm);
}

.lgr-breadcrumb__current {
  color: var(--lgr-text-ink);
}

.lgr-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.lgr-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--lgr-border-warm);
  background: var(--lgr-bg-white);
  font-size: 14px;
  color: var(--lgr-text-ink);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.lgr-pagination__btn:hover,
.lgr-pagination__btn--active {
  background: var(--lgr-bg-cta);
  border-color: var(--lgr-bg-cta);
  color: #ffffff;
}

/* Features sub-page specific */
.lgr-features-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Docs / Long-form pages */
.lgr-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.lgr-docs-sidebar {
  position: sticky;
  top: calc(var(--lgr-nav-h) + 24px);
}

.lgr-docs-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lgr-docs-sidebar__link {
  display: block;
  padding: 7px 12px;
  font-size: 14px;
  color: var(--lgr-text-sage);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.lgr-docs-sidebar__link:hover,
.lgr-docs-sidebar__link--active {
  background: rgba(42, 107, 69, 0.08);
  color: var(--lgr-bg-cta);
  font-weight: 600;
}

.lgr-docs-content {
  max-width: 760px;
  background: var(--lgr-bg-white);
  padding: 40px;
  border-radius: var(--lgr-radius-lg);
  border: 1px solid var(--lgr-border-warm);
}

.lgr-docs-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--lgr-text-ink);
  margin-top: 36px;
  margin-bottom: 12px;
}

.lgr-docs-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--lgr-text-ink);
  margin-top: 24px;
  margin-bottom: 8px;
}

.lgr-docs-content p {
  font-size: 15px;
  color: var(--lgr-text-ink);
  line-height: 1.75;
  margin-bottom: 14px;
}

.lgr-docs-content pre {
  overflow-x: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .lgr-docs-layout {
    grid-template-columns: 1fr;
  }
  .lgr-docs-sidebar {
    position: static;
  }
}

.lgr-blog-grid-header {
  margin-bottom: 28px;
  padding-top: 8px;
}

.lgr-blog-grid-header__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--lgr-text-ink);
}

.lgr-blog-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.lgr-blog-card__author-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(42, 107, 69, 0.12);
  color: var(--lgr-bg-cta);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lgr-blog-card__author-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--lgr-text-sage);
}

.lgr-nav__link--active {
  color: var(--lgr-text-on-dark);
  font-weight: 600;
}

.lgr-article-byline__info {
  flex: 1;
}

.lgr-article-nav {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.lgr-article-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lgr-section--dark-alt .lgr-testimonial-card__stars {
  color: var(--lgr-text-on-dark);
}

/* JS state hooks — lgr.js querys these to target specific forms; no layout styling needed */
.lgr-auth-login-form { /* JS state hook, no styling */ }
.lgr-auth-register-form { /* JS state hook, no styling */ }
.lgr-auth-forgot-form { /* JS state hook, no styling */ }
.lgr-auth-form-view { /* JS state hook — lgr.js hides this when success view activates */ }

/* Pricing toggle price variants — lgr.js sets display:none/'' on these to switch billing period.
   Annual prices start hidden via inline style (set by init script in pricing.html),
   so that when JS does el.style.display='' to show them, this CSS display:inline takes over. */
.lgr-price--monthly {
  display: inline;
}
.lgr-price--annual {
  display: inline;
}

/* lgr-contact-form is the JS hook lgr.js uses to bind the contact form submit handler
   (initContactForm queries 'form.lgr-contact-form'). The form shares .lgr-form layout. */
.lgr-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* lgr-contact-info wraps the form header, body intro text, and the form itself */
.lgr-contact-info {
  display: flex;
  flex-direction: column;
}

/* Flip variant for alternating feature items: reverses icon and text column order */
.lgr-feature-item--flip {
  flex-direction: row-reverse;
}

/* Coming-soon integration card: visually muted to distinguish from live integrations */
.lgr-integration-card--coming {
  opacity: 0.55;
  pointer-events: none;
}

/* Annual billing notice banner that appears when annual pricing is active */
.lgr-pricing-annual-banner {
  display: block;
  text-align: center;
  padding: 12px 16px;
  margin-bottom: 24px;
  background: rgba(42, 107, 69, 0.08);
  border-radius: var(--lgr-radius);
  border: 1px solid rgba(42, 107, 69, 0.18);
  font-size: 14px;
  font-weight: 500;
  color: var(--lgr-bg-cta);
}
