/* Prepcadence — Site CSS
   Brand: warm_natural / terracotta amber
   Accent: #92400E | Secondary: #3D5A45
   Fonts: Satoshi (body) + Sora (display)
*/

/* =========================================================
   0. OVERFLOW GUARD (MANDATORY)
   ========================================================= */
html, body { overflow-x: hidden; }

/* =========================================================
   1. CSS VARIABLES / TOKENS
   ========================================================= */
:root {
  --pc-accent:           #92400E;
  --pc-accent-light:     #B45309;
  --pc-accent-rgb:       146, 64, 14;
  --pc-secondary:        #3D5A45;
  --pc-secondary-rgb:    61, 90, 69;

  --pc-bg-base:          #FDFAF7;
  --pc-bg-alt:           #F5EFE6;
  --pc-bg-warm:          #FDF3E7;
  --pc-bg-dark:          #1C1A18;
  --pc-bg-dark-2:        #2A2420;

  --pc-text-head:        #1C1A18;
  --pc-text-body:        #3D3530;
  --pc-text-muted:       #7C6F65;
  --pc-text-light:       #FDFAF7;

  --pc-border:           #E8DDD2;
  --pc-border-dark:      #3A3530;

  --font-sans:           'Satoshi', system-ui, -apple-system, sans-serif;
  --font-display:        'Sora', 'Satoshi', system-ui, sans-serif;

  --pc-radius:           12px;
  --pc-radius-sm:        8px;
  --pc-shadow:           0 4px 24px rgba(146,64,14,0.10);
  --pc-shadow-lg:        0 12px 48px rgba(28,26,24,0.14);
  --pc-container:        1200px;
  --pc-nav-h:            68px;
}

/* =========================================================
   2. RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background: var(--pc-bg-base);
  color: var(--pc-text-body);
  margin: 0;
  padding: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--pc-text-head);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 0;
}

a { color: var(--pc-accent); text-decoration: none; }
a:hover { color: var(--pc-accent-light); }

img { max-width: 100%; height: auto; display: block; }

p { margin-top: 0; margin-bottom: 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

/* Container utility */
.container {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section header */
.pc-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.pc-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pc-accent);
  margin-bottom: 12px;
}
.pc-section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 16px;
}
.pc-section-desc {
  font-size: 17px;
  color: var(--pc-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Page-hero (sub-pages) */
.pc-page-hero {
  background: var(--pc-bg-alt);
  padding: 120px 24px 60px;
  text-align: center;
  border-bottom: 1px solid var(--pc-border);
}
.pc-page-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pc-accent);
  margin-bottom: 12px;
}
.pc-page-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 16px;
}
.pc-page-hero__lede {
  font-size: 18px;
  color: var(--pc-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================================
   3. BUTTONS
   ========================================================= */
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--pc-radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, filter 0.2s;
  line-height: 1;
}
.pc-btn--primary {
  background: var(--pc-accent);
  color: #fff;
  border-color: var(--pc-accent);
}
.pc-btn--primary:hover {
  background: var(--pc-accent-light);
  border-color: var(--pc-accent-light);
  color: #fff;
}
.pc-btn--outline {
  background: transparent;
  color: var(--pc-accent);
  border-color: var(--pc-accent);
}
.pc-btn--outline:hover {
  background: var(--pc-accent);
  color: #fff;
}
.pc-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.pc-btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.pc-btn--sm { padding: 9px 18px; font-size: 13px; }
.pc-btn--full { width: 100%; justify-content: center; }

/* =========================================================
   4. NAV (pc-nav — overrides c-nav for brand prefix)
   ========================================================= */
.pc-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,250,247,0.95);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--pc-border);
  transition: box-shadow 0.3s ease;
}
.pc-nav.scrolled {
  box-shadow: 0 2px 16px rgba(146,64,14,0.10);
}
.pc-nav--solid {
  background: rgba(253,250,247,0.98) !important;
  box-shadow: 0 2px 12px rgba(28,26,24,0.08);
}
.pc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--pc-nav-h);
}
.pc-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.pc-nav__logo-img {
  height: 32px;
  width: auto;
}
.pc-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pc-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--pc-text-body);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.pc-nav__links a:hover {
  color: var(--pc-accent);
  background: var(--pc-bg-alt);
}
.pc-nav__links a.active {
  color: var(--pc-accent);
}
.pc-nav__cta {
  background: var(--pc-accent) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 14px;
}
.pc-nav__cta:hover {
  background: var(--pc-accent-light) !important;
  color: #fff !important;
}
.pc-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.pc-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pc-text-head);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .pc-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--pc-nav-h);
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    border-top: 1px solid var(--pc-border);
    box-shadow: 0 8px 24px rgba(28,26,24,0.10);
    align-items: flex-start;
    gap: 4px;
  }
  .pc-nav__links.open { display: flex; }
  .pc-nav__toggle { display: flex; }
  .pc-nav__links a { width: 100%; }
}

/* =========================================================
   5. HERO (C-split with real left/right columns)
   ========================================================= */
.pc-hero {
  position: relative;
  background: var(--pc-bg-base);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: stretch;
}
.pc-hero.pc-hero--split {
  min-height: 620px;
}
.pc-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 48px;
  min-height: 620px;
}
.pc-hero__content {
  padding: 100px 0 80px;
  width: 100%;
}
.pc-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pc-accent);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(146,64,14,0.08);
  border-radius: 4px;
}
.pc-hero__heading {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--pc-text-head);
  line-height: 1.15;
  margin: 0 0 20px;
}
.pc-hero__heading em {
  font-style: normal;
  color: var(--pc-accent);
}
.pc-hero__sub {
  font-size: 18px;
  color: var(--pc-text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.pc-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pc-hero__visual {
  position: relative;
  width: 100%;
  border-radius: var(--pc-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pc-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pc-hero__visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(253,250,247,0.95);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--pc-shadow-lg);
  backdrop-filter: blur(8px);
}
.pc-hero__visual-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--pc-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.pc-hero__visual-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-text-head);
  line-height: 1.3;
}
.pc-hero__visual-badge-sub {
  font-size: 11px;
  color: var(--pc-text-muted);
  font-weight: 400;
}

/* Hero decorative background */
.pc-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(146,64,14,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pc-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61,90,69,0.05) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .pc-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pc-hero__content {
    padding: 80px 0 0;
    text-align: center;
  }
  .pc-hero__sub { margin-left: auto; margin-right: auto; }
  .pc-hero__actions { justify-content: center; }
  .pc-hero__visual { max-width: 560px; margin: 0 auto; }
  .pc-hero { min-height: auto; }
  .pc-hero.pc-hero--split { min-height: auto; }
}

/* =========================================================
   6. STATS (B-cards)
   ========================================================= */
.pc-stats {
  padding: 64px 0;
  background: var(--pc-bg-alt);
}
.pc-stats__inner {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
}
.pc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pc-stats__card {
  background: #fff;
  border-radius: var(--pc-radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--pc-border);
  box-shadow: 0 2px 8px rgba(146,64,14,0.05);
}
.pc-stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--pc-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.pc-stats__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--pc-text-head);
  margin-bottom: 6px;
}
.pc-stats__desc {
  font-size: 13px;
  color: var(--pc-text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .pc-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pc-stats__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   7. FEATURES (C-alternating)
   ========================================================= */
.pc-features {
  padding: 88px 0;
  background: #fff;
}
.pc-features__inner {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
}
.pc-features__rows {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 8px;
}
.pc-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.pc-features__row--reversed .pc-features__text {
  order: 2;
}
.pc-features__row--reversed .pc-features__visual {
  order: 1;
}
.pc-features__visual {
  width: 100%;
  border-radius: var(--pc-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.pc-features__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pc-features__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pc-accent);
  margin-bottom: 10px;
}
.pc-features__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 12px;
}
.pc-features__one-liner {
  font-size: 16px;
  font-weight: 500;
  color: var(--pc-secondary);
  margin-bottom: 14px;
}
.pc-features__desc {
  font-size: 15px;
  color: var(--pc-text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .pc-features__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pc-features__row--reversed .pc-features__text,
  .pc-features__row--reversed .pc-features__visual {
    order: unset;
  }
}

/* =========================================================
   8. PROCESS (A-numbered)
   ========================================================= */
.pc-process {
  padding: 80px 0;
  background: var(--pc-bg-alt);
}
.pc-process__inner {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
}
.pc-process__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
  counter-reset: process-counter;
}
.pc-process__step {
  background: #fff;
  border-radius: var(--pc-radius);
  padding: 32px;
  border: 1px solid var(--pc-border);
  position: relative;
}
.pc-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--pc-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.pc-process__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 8px;
}
.pc-process__content p {
  font-size: 14px;
  color: var(--pc-text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .pc-process__list { grid-template-columns: 1fr; }
}

/* =========================================================
   9. TESTIMONIALS (A-quotes)
   ========================================================= */
.pc-testimonials {
  padding: 80px 0;
  background: var(--pc-bg-warm);
}
.pc-testimonials__inner {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
}
.pc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.pc-testimonial-card {
  background: #fff;
  border-radius: var(--pc-radius);
  padding: 32px;
  border: 1px solid var(--pc-border);
  display: flex;
  flex-direction: column;
}
.pc-testimonial-card__quote {
  font-size: 15px;
  color: var(--pc-text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin: 0 0 24px;
}
.pc-testimonial-card__author {
  font-weight: 700;
  font-size: 14px;
  color: var(--pc-text-head);
  display: block;
}
.pc-testimonial-card__role {
  font-size: 13px;
  color: var(--pc-text-muted);
  display: block;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .pc-testimonials__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   10. PRICING (A-3col)
   ========================================================= */
.pc-pricing {
  padding: 88px 0;
  background: var(--pc-bg-alt);
}
.pc-pricing__inner {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
}
.pc-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pc-pricing__card {
  background: #fff;
  border-radius: var(--pc-radius);
  padding: 36px 32px;
  border: 1px solid var(--pc-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pc-pricing__card--featured {
  border-color: var(--pc-accent);
  box-shadow: 0 8px 32px rgba(146,64,14,0.14);
  position: relative;
}
.pc-pricing__badge {
  display: inline-block;
  background: var(--pc-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.pc-pricing__plan {
  font-size: 20px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 16px;
}
.pc-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.pc-pricing__amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--pc-accent);
  line-height: 1;
}
.pc-pricing__period {
  font-size: 16px;
  color: var(--pc-text-muted);
}
.pc-pricing__annual {
  font-size: 13px;
  color: var(--pc-secondary);
  font-weight: 500;
  margin-bottom: 12px;
}
.pc-pricing__desc {
  font-size: 14px;
  color: var(--pc-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--pc-border);
  padding-bottom: 20px;
}
.pc-pricing__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-pricing__features li {
  font-size: 14px;
  color: var(--pc-text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.pc-pricing__features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='%2392400E' opacity='.12'/%3E%3Cpath d='M4.5 8l2.3 2.3 4.7-4.6' stroke='%2392400E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}
.pc-pricing__cta-wrap {
  margin-top: auto;
}
@media (max-width: 900px) {
  .pc-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =========================================================
   11. CTA BANNER
   ========================================================= */
.pc-cta {
  padding: 80px 0;
  background: var(--pc-bg-dark);
}
.pc-cta__inner {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.pc-cta__heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.pc-cta__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.pc-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   12. BLOG PREVIEW (index insights section)
   ========================================================= */
.pc-blog-grid {
  padding: 80px 0;
  background: #fff;
}
.pc-blog-grid__inner {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
}
.pc-blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.pc-blog-grid__list > li { list-style: none; }
.pc-blog-card {
  background: #fff;
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s;
}
.pc-blog-card:hover {
  box-shadow: var(--pc-shadow-lg);
}
.pc-blog-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pc-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.pc-blog-card:hover .pc-blog-card__thumb img {
  transform: scale(1.04);
}
.pc-blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-blog-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pc-accent);
  margin-bottom: 8px;
}
.pc-blog-card__date {
  font-size: 12px;
  color: var(--pc-text-muted);
  margin-bottom: 8px;
}
.pc-blog-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 10px;
  line-height: 1.4;
}
.pc-blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.pc-blog-card__title a:hover { color: var(--pc-accent); }
.pc-blog-card__excerpt {
  font-size: 14px;
  color: var(--pc-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.pc-blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-accent);
  text-decoration: none;
  margin-top: auto;
}
.pc-blog-card__read-more:hover { color: var(--pc-accent-light); }

@media (max-width: 900px) {
  .pc-blog-grid__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pc-blog-grid__list { grid-template-columns: 1fr; }
}

/* =========================================================
   13. ABOUT PAGE
   ========================================================= */
.pc-about { padding: 88px 0; background: #fff; }
.pc-about__inner { max-width: var(--pc-container); margin: 0 auto; padding: 0 24px; }

.pc-founding-story { padding: 88px 0; background: var(--pc-bg-alt); }
.pc-founding-story__inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.pc-founding-story__lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--pc-text-head);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pc-founding-story__body {
  font-size: 16px;
  color: var(--pc-text-body);
  line-height: 1.75;
}
.pc-founding-story__body p { margin-bottom: 20px; }

.pc-mission { padding: 72px 0; background: var(--pc-accent); color: #fff; }
.pc-mission__inner { max-width: 800px; margin: 0 auto; padding: 0 24px; text-align: center; }
.pc-mission__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.pc-mission__statement {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  line-height: 1.35;
  margin: 0 0 20px;
}
.pc-mission__context {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
}

.pc-values { padding: 80px 0; background: #fff; }
.pc-values__inner { max-width: var(--pc-container); margin: 0 auto; padding: 0 24px; }
.pc-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.pc-values__card {
  background: var(--pc-bg-alt);
  border-radius: var(--pc-radius);
  padding: 32px;
  border: 1px solid var(--pc-border);
}
.pc-values__card-icon {
  width: 48px;
  height: 48px;
  background: rgba(146,64,14,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-accent);
  font-size: 20px;
  margin-bottom: 16px;
}
.pc-values__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 10px;
}
.pc-values__card p {
  font-size: 14px;
  color: var(--pc-text-muted);
  line-height: 1.6;
  margin: 0;
}

.pc-stage-focus { padding: 64px 0; background: var(--pc-bg-warm); }
.pc-stage-focus__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; text-align: center; }
.pc-stage-focus__tag {
  display: inline-block;
  background: var(--pc-secondary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pc-stage-focus__body {
  font-size: 17px;
  color: var(--pc-text-body);
  line-height: 1.65;
}

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

/* =========================================================
   14. PRODUCT PAGE
   ========================================================= */
.pc-problem { padding: 88px 0; background: var(--pc-bg-alt); }
.pc-problem__inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.pc-problem__lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--pc-text-head);
  line-height: 1.55;
  margin-bottom: 24px;
}
.pc-problem__body {
  font-size: 16px;
  color: var(--pc-text-body);
  line-height: 1.75;
}
.pc-problem__body p { margin-bottom: 18px; }
.pc-problem__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.pc-problem__stat {
  background: #fff;
  border-radius: var(--pc-radius-sm);
  padding: 20px;
  border-left: 3px solid var(--pc-accent);
}
.pc-problem__stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--pc-accent);
  display: block;
  margin-bottom: 4px;
}
.pc-problem__stat-label {
  font-size: 13px;
  color: var(--pc-text-muted);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .pc-problem__stats { grid-template-columns: 1fr; }
}

.pc-how-it-works { padding: 88px 0; background: #fff; }
.pc-how-it-works__inner { max-width: var(--pc-container); margin: 0 auto; padding: 0 24px; }
.pc-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.pc-how-it-works__step {
  text-align: center;
  padding: 36px 24px;
  background: var(--pc-bg-alt);
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  position: relative;
}
.pc-how-it-works__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--pc-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}
.pc-how-it-works__step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 10px;
}
.pc-how-it-works__step p {
  font-size: 14px;
  color: var(--pc-text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .pc-how-it-works__steps { grid-template-columns: 1fr; }
}

.pc-integrations { padding: 64px 0; background: var(--pc-bg-alt); }
.pc-integrations__inner { max-width: var(--pc-container); margin: 0 auto; padding: 0 24px; text-align: center; }
.pc-integrations__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.pc-integrations__item {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pc-text-body);
}

.pc-target-customer { padding: 80px 0; background: var(--pc-bg-dark); }
.pc-target-customer__inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.pc-target-customer__heading {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
}
.pc-target-customer__body {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 32px;
}
.pc-target-customer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pc-target-customer__box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--pc-radius-sm);
  padding: 20px;
}
.pc-target-customer__box h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.pc-target-customer__box p {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .pc-target-customer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   15. TEAM PAGE
   ========================================================= */
.pc-team { padding: 88px 0; background: #fff; }
.pc-team__inner { max-width: var(--pc-container); margin: 0 auto; padding: 0 24px; }
.pc-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.pc-team-card {
  background: #fff;
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pc-team-card__avatar {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.pc-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pc-team-card__body {
  padding: 20px;
}
.pc-team-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 4px;
}
.pc-team-card__title {
  font-size: 13px;
  color: var(--pc-accent);
  font-weight: 500;
  margin: 0 0 10px;
}
.pc-team-card__bio {
  font-size: 13px;
  color: var(--pc-text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .pc-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pc-team__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   16. FOOTER (A-4col)
   ========================================================= */
.pc-footer {
  background: var(--pc-bg-dark);
  color: rgba(255,255,255,0.70);
  padding: 64px 0 0;
}
.pc-footer__inner {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
}
.pc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--pc-border-dark);
}
.pc-footer__brand img {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}
.pc-footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
  margin-bottom: 20px;
}
.pc-footer__social {
  display: flex;
  gap: 12px;
}
.pc-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  color: rgba(255,255,255,0.60);
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.pc-footer__social a:hover {
  background: var(--pc-accent);
  color: #fff;
}
.pc-footer__nav h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 16px;
}
.pc-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-footer__nav ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.2s;
}
.pc-footer__nav ul a:hover { color: #fff; }
.pc-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-footer__contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pc-footer__contact i {
  color: var(--pc-accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
}
.pc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.pc-footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  margin: 0;
}
.pc-footer__legal {
  display: flex;
  gap: 20px;
}
.pc-footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  text-decoration: none;
  transition: color 0.2s;
}
.pc-footer__legal a:hover { color: rgba(255,255,255,0.75); }

@media (max-width: 900px) {
  .pc-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pc-footer__grid { grid-template-columns: 1fr; }
  .pc-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   17. COOKIE BANNER (corner-toast-bl)
   ========================================================= */
.pc-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: #fff;
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-accent);
  box-shadow: 0 8px 32px rgba(146,64,14,0.15);
  padding: 20px 24px;
  z-index: 9999;
}
.pc-cookie[hidden] { display: none !important; }
.pc-cookie__text {
  font-size: 14px;
  color: var(--pc-text-body);
  line-height: 1.6;
  margin: 0 0 14px;
}
.pc-cookie__text a {
  color: var(--pc-accent);
  text-decoration: underline;
}
.pc-cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .pc-cookie { left: 12px; right: 12px; max-width: none; bottom: 12px; }
}

/* =========================================================
   17b. FOOTER LOGO FIX
   ========================================================= */
.pc-footer__logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

/* =========================================================
   18. BLOG ARTICLE READING WIDTH (MANDATORY)
   ========================================================= */
.c-article,
.c-article__container,
.c-post__body,
.c-post,
.c-blog-post,
.blog-article,
.blog-article-body,
.blog-article-content,
.blog-post,
.blog-post-body,
.article-body,
.article-content,
.post-content,
.post-body,
.container-narrow,
.reading-column {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.c-article img,
.c-article__container img,
.c-post__body img,
.blog-article-body img,
.blog-post img,
.article-body img,
.article-content img,
.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 24px auto 32px;
}

.c-article h2,
.c-post__body h2,
.blog-article-body h2,
.blog-post h2,
.article-body h2,
.post-content h2 { margin-top: 48px; margin-bottom: 20px; }

.c-article h3,
.c-post__body h3,
.blog-article-body h3,
.blog-post h3,
.article-body h3,
.post-content h3 { margin-top: 36px; margin-bottom: 16px; }

.pc-post {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.pc-post__header { margin-bottom: 32px; }
.pc-post__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 16px;
  line-height: 1.2;
}
.pc-post__meta {
  font-size: 14px;
  color: var(--pc-text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pc-post__cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--pc-radius);
  display: block;
  margin-bottom: 40px;
}
.pc-post__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-post__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--pc-text-body);
}
.pc-post__body h2 { font-size: 26px; margin: 40px 0 16px; }
.pc-post__body h3 { font-size: 20px; margin: 32px 0 12px; }
.pc-post__body p { margin-bottom: 20px; }
.pc-post__body ul, .pc-post__body ol { margin-left: 24px; margin-bottom: 20px; }
.pc-post__body li { margin-bottom: 8px; }

/* Related posts */
.pc-related-posts {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px 80px;
  border-top: 1px solid var(--pc-border);
  padding-top: 40px;
}
.pc-related-posts h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin-bottom: 20px;
}
.pc-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pc-related-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-sm);
  overflow: hidden;
  text-decoration: none;
}
.pc-related-card__img {
  width: 100%;
  overflow: hidden;
}
.pc-related-card__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.pc-related-card__body {
  padding: 14px;
}
.pc-related-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pc-text-head);
  line-height: 1.4;
  margin: 0;
}
.pc-related-card:hover .pc-related-card__title { color: var(--pc-accent); }

@media (max-width: 600px) {
  .pc-related-posts__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   19. CONTACT PAGE
   ========================================================= */
.pc-contact { padding: 88px 0; background: #fff; }
.pc-contact__inner { max-width: var(--pc-container); margin: 0 auto; padding: 0 24px; }
.pc-contact__form { display: flex; flex-direction: column; }
.pc-contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.pc-contact__form-group { margin-bottom: 18px; }
.pc-contact__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--pc-text-head);
  margin-bottom: 6px;
}
.pc-contact__input,
.pc-contact__select,
.pc-contact__textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--pc-text-head);
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-sm);
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.pc-contact__input:focus,
.pc-contact__select:focus,
.pc-contact__textarea:focus {
  outline: 2px solid var(--pc-accent);
  outline-offset: 2px;
  border-color: var(--pc-accent);
}
.pc-contact__textarea { resize: vertical; min-height: 120px; }
.pc-contact__info-block {
  padding: 32px;
  background: var(--pc-bg-alt);
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
}
.pc-contact__info-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 20px;
}
.pc-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.pc-contact__info-icon {
  width: 36px;
  height: 36px;
  background: rgba(146,64,14,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-accent);
  font-size: 14px;
  flex-shrink: 0;
}
.pc-contact__info-text p { font-size: 14px; color: var(--pc-text-muted); margin: 0; }
.pc-contact__info-text strong { font-size: 14px; color: var(--pc-text-head); }
@media (max-width: 768px) {
  .pc-contact__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   20. 404 PAGE
   ========================================================= */
.pc-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pc-bg-base);
  text-align: center;
  padding: 40px 24px;
}
.pc-404__inner { max-width: 560px; }
.pc-404__code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  color: var(--pc-accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
}
.pc-404__heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 14px;
}
.pc-404__body {
  font-size: 16px;
  color: var(--pc-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* =========================================================
   21. PRICING PAGE (standalone)
   ========================================================= */
.pc-pricing-faq { padding: 80px 0; background: #fff; }
.pc-pricing-faq__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.pc-faq-item { border-bottom: 1px solid var(--pc-border); padding: 20px 0; }
.pc-faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--pc-text-head);
  margin: 0 0 10px;
}
.pc-faq-item p {
  font-size: 15px;
  color: var(--pc-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   22. UTILITY CLASSES
   ========================================================= */
.u-text-center { text-align: center; }
.u-mt-8 { margin-top: 8px; }
.u-mb-0 { margin-bottom: 0; }
.u-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   23. RESPONSIVE UTILITIES
   ========================================================= */
@media (max-width: 768px) {
  .pc-page-hero { padding-top: 100px; }
}

/* =========================================================
   24. AUTH / LOGIN PAGES (Pattern A subfolder)
   ========================================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.auth-split {
  display: flex;
  min-height: 100vh;
  width: 100%;
}
.auth-form-side {
  flex: 0 0 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  background: #fff;
}
.auth-info-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px;
  background: rgba(146,64,14,0.06);
  border-left: 1px solid rgba(146,64,14,0.12);
}
.auth-card {
  background: #fff;
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.auth-logo {
  display: block;
  margin-bottom: 28px;
  text-align: center;
}
.auth-logo img { height: 32px; width: auto; }
.auth-card h2 {
  font-family: var(--font-display, 'Sora', sans-serif);
  color: #1C1A18;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
}
.auth-form { display: flex; flex-direction: column; }
.auth-field { margin-bottom: 16px; }
.auth-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1C1A18;
  margin-bottom: 6px;
}
.auth-field input,
.auth-field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: #1C1A18;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s;
  font-family: inherit;
}
.auth-field input:focus,
.auth-field select:focus {
  outline: 2px solid #92400E;
  outline-offset: 2px;
  border-color: #92400E;
}
.auth-field input::placeholder { color: #94a3b8; }
.btn-auth {
  width: 100%;
  padding: 14px;
  background: #92400E;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 0.2s;
  font-family: inherit;
}
.btn-auth:hover { filter: brightness(1.12); }
.auth-links {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #475569;
}
.auth-links a {
  color: #92400E;
  text-decoration: none;
  font-weight: 500;
}
.auth-links a:hover { text-decoration: underline; }
.auth-mini-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.auth-mini-footer a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin: 0 8px;
}
.auth-mini-footer a:hover { color: rgba(255,255,255,0.75); }
.auth-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-message.success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid rgba(21,128,61,0.2);
}
.auth-message.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid rgba(185,28,28,0.2);
}
.auth-info-side h2 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: #1C1A18;
  margin: 0 0 24px;
  line-height: 1.3;
}
.auth-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.auth-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(146,64,14,0.10);
  font-size: 15px;
  color: #3a3630;
  line-height: 1.5;
}
.auth-features li:last-child { border-bottom: none; }
.auth-features li i {
  color: #92400E;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.auth-social-proof {
  padding: 20px;
  background: rgba(146,64,14,0.07);
  border-radius: 10px;
  border-left: 3px solid #92400E;
}
.auth-social-proof p { font-size: 14px; color: #3a3630; margin: 0; line-height: 1.5; }
@media (max-width: 900px) {
  .auth-split { flex-direction: column; }
  .auth-info-side { display: none; }
  .auth-form-side { flex: 1; padding: 48px 24px; justify-content: center; }
}
/* Additional auth layout classes */
.auth-form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .auth-form-pair { grid-template-columns: 1fr; }
}
.auth-terms {
  font-size: 12px;
  color: #64748b;
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.auth-terms a { color: #92400E; text-decoration: underline; }

/* Reset password page */
.auth-reset-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 80px;
}
.auth-reset-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: #92400E;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.auth-reset-back:hover { text-decoration: underline; filter: brightness(1.15); }
.auth-reset-hint {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Verify page */
.auth-verify-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 80px;
}
.auth-verify-card { text-align: center; }
.auth-verify-card h2 { margin-bottom: 12px; }
.auth-verify-icon {
  width: 64px;
  height: 64px;
  background: rgba(146,64,14,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400E;
  font-size: 28px;
  margin: 0 auto 20px;
}
.auth-verify-body {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Dashboard page */
.db-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #1C1A18;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}
.db-sidebar__logo {
  display: block;
  padding: 0 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.db-sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 12px;
}
.db-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.db-sidebar__nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.db-sidebar__nav a.active { background: rgba(146,64,14,0.18); color: #fff; }
.db-sidebar__nav a i { width: 18px; text-align: center; font-size: 15px; flex-shrink: 0; }
.db-sidebar__logout {
  padding: 16px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 16px;
}
.db-sidebar__logout a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  text-decoration: none;
}
.db-sidebar__logout a:hover { color: rgba(255,255,255,0.75); }
.db-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.db-topbar {
  background: #fff;
  border-bottom: 1px solid #E8DDD2;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.db-topbar__greeting {
  font-size: 16px;
  font-weight: 600;
  color: #1C1A18;
}
.db-topbar__meta {
  font-size: 13px;
  color: #7C6F65;
}
.db-content {
  flex: 1;
  padding: 32px;
}
.db-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.db-stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #E8DDD2;
  box-shadow: 0 2px 8px rgba(146,64,14,0.04);
}
.db-stat-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7C6F65;
  margin-bottom: 8px;
}
.db-stat-card__value {
  font-family: var(--font-display, 'Sora', system-ui, sans-serif);
  font-size: 32px;
  font-weight: 700;
  color: #92400E;
  line-height: 1;
  margin-bottom: 4px;
}
.db-stat-card__sub {
  font-size: 12px;
  color: #7C6F65;
}
.db-stat-card__icon {
  float: right;
  font-size: 20px;
  color: rgba(146,64,14,0.25);
  margin-top: -40px;
}
.db-section {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E8DDD2;
  padding: 24px;
  margin-bottom: 24px;
}
.db-section__title {
  font-size: 16px;
  font-weight: 700;
  color: #1C1A18;
  margin: 0 0 16px;
  font-family: var(--font-display, 'Sora', system-ui, sans-serif);
}
.db-location-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #F5EFE6;
  font-size: 14px;
}
.db-location-item:last-child { border-bottom: none; }
.db-location-item__name { font-weight: 600; color: #1C1A18; }
.db-location-item__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.db-location-item__status--ok { background: #f0fdf4; color: #15803d; }
.db-location-item__status--warn { background: #fef9ec; color: #b45309; }
.db-location-item__score { color: #7C6F65; }
.db-preview-note {
  background: rgba(146,64,14,0.06);
  border: 1px solid rgba(146,64,14,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #7C6F65;
  margin-bottom: 24px;
}
.db-preview-note strong { color: #92400E; }

@media (max-width: 900px) {
  .db-sidebar { display: none; }
  .db-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .db-stats { grid-template-columns: 1fr; }
  .db-content { padding: 16px; }
  .db-topbar { padding: 12px 16px; }
}

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