/* ============================================================ */
/* Discovarc — Main CSS                                          */
/* Inlines all component CSS for used variants                   */
/* Variants: nav/A-simple, hero/E-editorial-light, stats/A-bar   */
/*   features/A-grid-6, process/A-numbered, testimonials/A-quotes*/
/*   cta/B-newsletter, contact/A-split, team/A-grid              */
/*   footer/A-4col, cookie/C-bottom-full-bar                     */
/* ============================================================ */

/* --- Base / Reset ------------------------------------------- */
:root {
  --accent: #B45309;
  --accent-rgb: 180,83,9;
  --secondary: #1C1917;
  --bg-dark: #1C1917;
  --bg-alt: #292524;
  --bg-surface: #2c2826;
  --bg-warm: #fafaf8;
  --text-primary: #f5f0eb;
  --text-secondary: #a8a097;
  --text-muted: #78716c;
  --border: #44403c;
  --font-sans: 'Satoshi', system-ui, sans-serif;
  --font-display: 'Sora', 'Satoshi', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: #ffffff;
  color: #374151;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.page-sub { padding-top: 64px; }

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.85; }

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

html { scroll-behavior: smooth; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Header (shared) -------------------------------- */
.c-section-header { text-align: center; margin-bottom: 56px; }
.c-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.c-section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.c-section-desc {
  font-size: 17px;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* dark section header override */
.section-dark .c-section-title { color: #f5f0eb; }
.section-dark .c-section-desc { color: #a8a097; }
.section-dark .c-section-label { color: var(--accent); }

/* --- Buttons ------------------------------------------------ */
.c-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}
.c-btn--primary {
  background: var(--accent);
  color: #ffffff;
}
.c-btn--primary:hover { opacity: 0.9; color: #ffffff; }
.c-btn--outline {
  background: transparent;
  color: #374151;
  border: 1px solid rgba(15,23,42,0.2);
}
.c-btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.c-btn--sm { padding: 8px 16px; font-size: 14px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Page Hero (sub-pages) ---------------------------------- */
.c-page-hero {
  background: #fafaf8;
  border-bottom: 1px solid rgba(28,25,23,0.08);
  padding: 100px 0 48px;
  text-align: left;
}
.c-page-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.c-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.c-page-hero__lede {
  font-size: 17px;
  color: #6b7280;
  max-width: 56ch;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================ */
/* NAV — Variant A: Simple                                       */
/* ============================================================ */
.c-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.c-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.c-nav__logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 22px; font-weight: 800;
  text-decoration: none;
  color: inherit;
}
.c-nav__logo-img { height: 32px; width: auto; display: none; }
.c-nav__links {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.c-nav__links a {
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s;
}
.c-nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600;
}
.c-nav__cta:hover { opacity: 0.9; color: #fff !important; }
.c-nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.c-nav__toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; transition: 0.3s; }

/* Theme: LIGHT */
.c-nav[data-nav-theme="light"] {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.c-nav[data-nav-theme="light"] .c-nav__logo { color: #0f172a; }
.c-nav[data-nav-theme="light"] .c-nav__logo-img--light { display: inline; }
.c-nav[data-nav-theme="light"] .c-nav__logo-img--dark  { display: none; }
.c-nav[data-nav-theme="light"] .c-nav__links a { color: #334155; }
.c-nav[data-nav-theme="light"] .c-nav__links a:hover,
.c-nav[data-nav-theme="light"] .c-nav__links a.active { color: #0f172a; }
.c-nav[data-nav-theme="light"] .c-nav__toggle span { background: #0f172a; }

/* Theme: DARK */
.c-nav[data-nav-theme="dark"] { background: transparent; }
.c-nav[data-nav-theme="dark"].scrolled {
  background: rgba(28,25,23,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.c-nav[data-nav-theme="dark"] .c-nav__logo { color: #f1f5f9; }
.c-nav[data-nav-theme="dark"] .c-nav__logo-img--light { display: none; }
.c-nav[data-nav-theme="dark"] .c-nav__logo-img--dark  { display: inline; }
.c-nav[data-nav-theme="dark"] .c-nav__links a { color: #94a3b8; }
.c-nav[data-nav-theme="dark"] .c-nav__links a:hover { color: #f1f5f9; }
.c-nav[data-nav-theme="dark"] .c-nav__toggle span { background: #f1f5f9; }

@media (max-width: 768px) {
  .c-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #ffffff;
    padding: 16px;
    border-top: 1px solid rgba(28,25,23,0.1);
  }
  .c-nav[data-nav-theme="light"] .c-nav__links { background: #ffffff; }
  .c-nav[data-nav-theme="light"] .c-nav__links a { color: #0f172a; }
  .c-nav__links.open { display: flex; }
  .c-nav__toggle { display: block; }
}

/* ============================================================ */
/* HERO — Variant E: Editorial Light                             */
/* ============================================================ */
.c-hero--editorial-light {
  background: #ffffff;
  color: #0f172a;
  min-height: auto;
  padding: clamp(96px, 14vw, 160px) 0 clamp(64px, 10vw, 96px);
  display: block;
}
.c-hero--editorial-light .c-hero__editorial { max-width: 860px; }
.c-hero--editorial-light .c-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.c-hero__title--editorial {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #0f172a;
  max-width: 12em;
  margin-bottom: 24px;
}
.c-hero__subtitle--editorial {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: #475569;
  max-width: 56ch;
  margin-bottom: 36px;
}
.c-hero--editorial-light .c-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.c-hero--editorial-light .c-btn--outline {
  color: #0f172a;
  border-color: rgba(15,23,42,0.2);
}
.c-hero--editorial-light .c-btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}
@media (max-width: 768px) {
  .c-hero--editorial-light { padding: 80px 0 48px; }
  .c-hero__title--editorial { font-size: 34px; }
}

/* ============================================================ */
/* STATS — Variant A: Bar                                        */
/* ============================================================ */
.c-stats--bar {
  background: var(--secondary);
  padding: 48px 0;
}
.c-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.c-stats__item { padding: 16px 0; }
.c-stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}
.c-stats__label {
  display: block;
  font-size: 14px;
  color: #a8a097;
  margin-top: 8px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .c-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .c-stats__number { font-size: 28px; }
}

/* ============================================================ */
/* FEATURES — Variant A: Grid-6                                  */
/* ============================================================ */
.c-features { padding: 80px 0; background: #fafaf8; }
.c-features__grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.c-features__card {
  background: #ffffff;
  border: 1px solid rgba(28,25,23,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,25,23,0.1);
}
.c-features__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(180, 83, 9, 0.08);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.c-features__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.c-features__text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  flex: 1;
}
@media (max-width: 992px) {
  .c-features__grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .c-features__grid--6 { grid-template-columns: 1fr; }
  .c-section-title { font-size: 28px; }
}

/* ============================================================ */
/* PROCESS — Variant A: Numbered                                 */
/* ============================================================ */
.c-process { padding: 80px 0; background: #ffffff; }
.c-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.c-process__step {
  position: relative;
  padding: 32px 24px;
  background: #fafaf8;
  border: 1px solid rgba(28,25,23,0.07);
  border-radius: 12px;
}
.c-process__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.c-process__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.c-process__text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}
@media (max-width: 992px) {
  .c-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .c-process__steps { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* TESTIMONIALS — Variant A: Quotes                              */
/* ============================================================ */
.c-testimonials--quotes { background: #fafaf8; padding: 80px 0; }
.c-testimonials--quotes .c-section-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.c-testimonials__grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.c-testimonials__quote {
  background: #ffffff;
  border: 1px solid rgba(28,25,23,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.c-testimonials__quote .c-testimonials__text {
  font-size: 17px;
  line-height: 1.6;
  color: #1f2937;
  margin: 0 0 28px;
  font-weight: 500;
  font-style: normal;
}
.c-testimonials__attribution {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}
.c-testimonials__attribution--text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}
.c-testimonials__avatar {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}


.c-testimonials__author {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  align-self: end;
}
.c-testimonials__role {
  font-size: 13px;
  color: #6b7280;
  align-self: start;
}
@media (max-width: 900px) {
  .c-testimonials__grid--3col { grid-template-columns: 1fr; }
  .c-testimonials__quote { min-height: auto; }
}

/* ============================================================ */
/* CTA — Variant B: Newsletter                                   */
/* ============================================================ */
.c-cta--newsletter {
  background: #fafaf8;
  padding: 72px 0 64px;
  text-align: left;
  border-top: 1px solid rgba(28,25,23,0.1);
  border-bottom: 1px solid rgba(28,25,23,0.1);
}
.c-cta__newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.c-cta__newsletter-copy { max-width: 480px; }
.c-cta__newsletter-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.c-cta__newsletter-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.c-cta__newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
}
.c-cta__newsletter-input {
  flex: 1;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid rgba(28,25,23,0.2);
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-family: var(--font-sans);
}
.c-cta__newsletter-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.c-cta--newsletter .c-btn--primary {
  background: var(--secondary);
  color: #ffffff;
}
.c-cta__newsletter-note {
  margin: 20px 0 0;
  font-size: 12px;
  color: #6b7280;
}
@media (max-width: 768px) {
  .c-cta__newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .c-cta__newsletter-title { font-size: 22px; }
  .c-cta__newsletter-form { flex-direction: column; }
}

/* ============================================================ */
/* TEAM — Variant A: Grid                                        */
/* ============================================================ */
.c-team { padding: 80px 0; background: #ffffff; }
.c-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.c-team__card { text-align: center; }
.c-team__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 16px;
  border: 3px solid rgba(180,83,9,0.15);
}
.c-team__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.c-team__role {
  font-size: 14px;
  color: #6b7280;
}

/* ============================================================ */
/* CONTACT — Variant A: Split                                    */
/* ============================================================ */
.c-contact { padding: 80px 0; }
.c-contact__wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.c-contact__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) {
  .c-contact__grid { grid-template-columns: 7fr 4fr; gap: 72px; }
}
.c-contact__form-col { min-width: 0; }
.c-contact__info-col { min-width: 0; }
.c-contact__row-2 { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) {
  .c-contact__row-2 { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.c-contact__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 32px;
}
.c-contact__form input,
.c-contact__form select,
.c-contact__form textarea {
  width: 100%;
  background: #fafaf8;
  border: 1px solid rgba(28,25,23,0.15);
  color: #111827;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
  font-family: var(--font-sans);
}
.c-contact__form input:focus,
.c-contact__form select:focus,
.c-contact__form textarea:focus {
  border-color: var(--accent);
  outline: none;
  background: #ffffff;
}
.c-contact__form select option { background: #ffffff; }
.c-contact__form button { cursor: pointer; }
.c-contact__info-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}
.c-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #6b7280;
}
.c-contact__info-item i { color: var(--accent); font-size: 16px; margin-top: 3px; min-width: 20px; }
.c-contact__info-item a { color: #6b7280; text-decoration: none; }
.c-contact__info-item a:hover { color: var(--accent); }

/* ============================================================ */
/* FOOTER — Variant A: 4-Column                                  */
/* ============================================================ */
.c-footer {
  background: var(--secondary);
  padding: 64px 0 0;
  border-top: 1px solid #292524;
  color: #a8a097;
}
.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.c-footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #f5f0eb;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}
.c-footer__logo-img {
  height: 30px;
  width: auto;
}
.c-footer__tagline {
  font-size: 14px;
  color: #78716c;
  line-height: 1.6;
  margin: 8px 0 0;
}
.c-footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #d6d0c8;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.c-footer__col ul { list-style: none; padding: 0; margin: 0; }
.c-footer__col ul li { margin-bottom: 10px; }
.c-footer__col ul a {
  color: #a8a097;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.c-footer__col ul a:hover { color: var(--accent); }
.c-footer__contact p { font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.c-footer__contact i { color: var(--accent); width: 18px; font-size: 13px; margin-right: 8px; }
.c-footer__bottom {
  border-top: 1px solid #292524;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #57534e;
}
.c-footer__legal { display: flex; gap: 20px; }
.c-footer__legal a { color: #57534e; text-decoration: none; font-size: 13px; }
.c-footer__legal a:hover { color: #a8a097; }
@media (max-width: 768px) {
  .c-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .c-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================ */
/* COOKIE BANNER — Variant C: Bottom Full-Width Bar              */
/* ============================================================ */
.c-cookie {
  position: fixed;
  z-index: 1080;
  background: #ffffff;
  color: #1f2937;
}
.c-cookie[hidden] { display: none !important; }
.c-cookie--bar {
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.06);
  padding: 14px 0;
}
.c-cookie--bar .c-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.c-cookie--bar .c-cookie__text {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  flex: 1;
}
.c-cookie--bar .c-cookie__text a {
  color: inherit;
  text-decoration: underline;
}
.c-cookie--bar .c-cookie__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.c-cookie__link {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: var(--font-sans);
}
.c-cookie__link:hover { color: #111827; }
@media (max-width: 768px) {
  .c-cookie--bar .c-cookie__inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .c-cookie--bar .c-cookie__actions { justify-content: flex-end; }
}

/* ============================================================ */
/* ABOUT — Mission / Values Section                              */
/* ============================================================ */
.c-mission { padding: 80px 0; background: #ffffff; }
.c-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.c-mission__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.c-mission__body {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.75;
}
.c-mission__values { list-style: none; padding: 0; margin: 24px 0 0; }
.c-mission__values li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(28,25,23,0.07);
  font-size: 15px;
  color: #374151;
}
.c-mission__values li:last-child { border-bottom: none; }
.c-mission__values li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
@media (max-width: 768px) {
  .c-mission__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================ */
/* PRODUCT — Integrations Section                               */
/* ============================================================ */
.c-integrations { padding: 80px 0; background: #fafaf8; }
.c-integrations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.c-integrations__badge {
  background: #ffffff;
  border: 1px solid rgba(28,25,23,0.1);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.c-integrations__badge:hover {
  box-shadow: 0 4px 16px rgba(28,25,23,0.1);
}
.c-integrations__badge img {
  width: 100%;
  max-width: 160px;
  height: 48px;
  object-fit: contain;
}

/* ============================================================ */
/* BLOG ARTICLE Reading-width CSS Block (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,
.entry-content {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.75;
  color: #374151;
}
.c-post__body h2, .article-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.c-post__body h3, .article-body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: #111827;
  margin: 32px 0 12px;
}
.c-post__body p, .article-body p { margin: 0 0 20px; }
.c-post__body a, .article-body a { color: var(--accent); text-decoration: underline; }
.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;
}
.blog-img-full { text-align: center; margin: 32px auto; max-width: 100%; }
.blog-img-full img { max-width: 100%; height: auto; border-radius: 12px; }

/* ============================================================ */
/* Blog Grid (index page)                                        */
/* ============================================================ */
.c-blog { padding: 80px 0; background: #fafaf8; }
.c-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.c-blog__card {
  background: #ffffff;
  border: 1px solid rgba(28,25,23,0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s;
}
.c-blog__card:hover { box-shadow: 0 8px 24px rgba(28,25,23,0.1); }
.c-blog__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.c-blog__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.c-blog__meta {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.c-blog__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
  line-height: 1.35;
}
.c-blog__title a { color: inherit; text-decoration: none; }
.c-blog__title a:hover { color: var(--accent); }
.c-blog__excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 16px;
}
.c-blog__read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
}
.c-blog__read-more:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .c-blog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .c-blog__grid { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* 404 Error Page                                                */
/* ============================================================ */
.c-error {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
}
.c-error__code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  color: rgba(180,83,9,0.12);
  line-height: 1;
  margin-bottom: 0;
}
.c-error__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.c-error__desc {
  font-size: 17px;
  color: #6b7280;
  max-width: 44ch;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ============================================================ */
/* Blog Article Detail Page                                      */
/* ============================================================ */
.c-post__header {
  padding: 100px 0 48px;
  background: #1C1917;
  color: #F8FAFC;
}
.c-post__breadcrumb {
  font-size: 13px;
  color: rgba(248,250,252,0.55);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.c-post__breadcrumb a { color: rgba(248,250,252,0.55); text-decoration: none; }
.c-post__breadcrumb a:hover { color: #F8FAFC; text-decoration: underline; }
.c-post__category {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(248,250,252,0.25);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(248,250,252,0.7);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.c-post__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.c-post__meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgba(248,250,252,0.55);
  flex-wrap: wrap;
  align-items: center;
}
.c-post__cover {
  margin: 0;
  display: block;
  max-height: 480px;
  overflow: hidden;
}
.c-post__cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
}
.c-post__body { padding: 56px 24px 40px; }
.c-post__lead {
  font-size: 20px;
  line-height: 1.65;
  color: #374151;
  font-weight: 500;
  margin-bottom: 32px;
}
.c-post__footer {
  max-width: 780px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(28,25,23,0.1);
}
.c-post__share {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
}
.c-post__share a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.c-post__share a:hover { text-decoration: underline; }

/* Related articles */
.c-related {
  padding: 64px 0;
  background: #fafaf8;
  border-top: 1px solid rgba(28,25,23,0.08);
}
.c-related__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 32px;
}
.c-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.c-related__card {
  background: #fff;
  border: 1px solid rgba(28,25,23,0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.c-related__card:hover { box-shadow: 0 8px 24px rgba(28,25,23,0.1); transform: translateY(-3px); }
.c-related__card a { text-decoration: none; }
.c-related__card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
}
.c-related__card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.c-related__card-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #9ca3af; margin-bottom: 6px; }
.c-related__card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin: 0 0 8px;
}
.c-related__card-title a { color: inherit; text-decoration: none; }
.c-related__card-title a:hover { color: var(--accent); }
.c-related__card-date { font-size: 12px; color: #9ca3af; margin-top: auto; }
@media (max-width: 768px) {
  .c-related__grid { grid-template-columns: 1fr; }
  .c-post__title { font-size: 28px; }
}

/* Article prev/next nav */
.c-article-nav {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(28,25,23,0.08);
}
.c-article-nav__prev,
.c-article-nav__next {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-article-nav__prev:hover,
.c-article-nav__next:hover { text-decoration: underline; }
