/* strpricely.css — Strpricely site CSS
   Inlines all component CSS for: nav, hero, stats, features, process,
   team, testimonials, cta, contact, footer, cookie-banner, pricing, base
   Accent: #65a30d | Secondary: #c2410c | Fonts: DM Sans + Space Mono
*/

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --accent: #65a30d;
  --accent-rgb: 101,163,13;
  --secondary: #c2410c;
  --bg-dark: #0f172a;
  --bg-alt: #1e293b;
  --bg-surface: #1a2332;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #334155;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-secondary);
  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.9; }

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

html { scroll-behavior: smooth; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin-top: 0;
}

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

/* Bootstrap-compatible container (features C-alternating uses .container) */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Bootstrap grid for features C-alternating (col-md-6, row, flex-md-row-reverse) */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.row.align-items-center { align-items: center; }
.col-md-6 {
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .col-md-6 { width: 50%; }
  .flex-md-row-reverse { flex-direction: row-reverse; }
}

/* ============================================================
   Nav Component
   ============================================================ */
.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: 28px; width: auto; display: none; }
.c-nav__logo-fallback { display: inline; }
.c-nav__logo-fallback span { color: var(--accent); }
.c-nav__logo-img ~ .c-nav__logo-fallback,
.c-nav__logo:has(.c-nav__logo-img) .c-nav__logo-fallback { display: none !important; }

.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; }

.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,
.c-nav[data-nav-theme="light"] .c-nav__logo-fallback { 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; }

.c-nav[data-nav-theme="dark"] { background: transparent; }
.c-nav[data-nav-theme="dark"].scrolled,
.c-nav[data-nav-theme="dark"].c-nav--solid {
  background: rgba(15,23,42,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,
.c-nav[data-nav-theme="dark"] .c-nav__logo-fallback { 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,
.c-nav[data-nav-theme="dark"] .c-nav__links a.active { 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: #0f172a;
    padding: 16px;
    border-top: 1px solid #1e293b;
  }
  .c-nav[data-nav-theme="light"] .c-nav__links {
    background: #ffffff;
    border-top-color: rgba(15,23,42,0.08);
  }
  .c-nav[data-nav-theme="light"] .c-nav__links a { color: #0f172a; }
  .c-nav__links.open { display: flex; }
  .c-nav__toggle { display: block; }
}

/* ============================================================
   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: #e2e8f0;
  border: 1px solid rgba(226,232,240,0.3);
}
.c-btn--outline:hover { border-color: #e2e8f0; color: #ffffff; }
.c-btn--sm { padding: 8px 16px; font-size: 14px; }
.c-btn--full { width: 100%; text-align: center; margin-top: auto; }

/* ============================================================
   Hero Component
   ============================================================ */
.c-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
  color: #f1f5f9;
}

.c-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 100%);
  z-index: 1;
}

.c-hero__wrap {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.c-hero__col { min-width: 0; }
.c-hero__col--8 { max-width: 66.666%; }
.c-hero__col--center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .c-hero__col--8,
  .c-hero__col--center { max-width: 100%; }
}

.c-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.c-hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 720px;
}

.c-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 600px;
}

.c-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.c-hero--left .c-hero__title,
.c-hero--left .c-hero__subtitle { text-align: left; }

@media (max-width: 768px) {
  .c-hero { min-height: 70vh; padding: 80px 0 60px; }
  .c-hero__title { font-size: 32px; }
  .c-hero__subtitle { font-size: 16px; }
}

/* ============================================================
   Page Hero (sub-pages)
   ============================================================ */
.c-page-hero {
  background: var(--bg-alt);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}
.c-page-hero__wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.c-page-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.c-page-hero__title {
  font-size: 36px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.c-page-hero__lede {
  font-size: 17px;
  color: #94a3b8;
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================================
   Section 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-size: 36px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.c-section-desc {
  font-size: 17px;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 768px) { .c-section-title { font-size: 28px; } }

/* ============================================================
   Stats Component
   ============================================================ */
.c-stats { padding: 48px 0; }
.c-stats--cards { background: #0f172a; padding: 64px 0; }

.c-stats__wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.c-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.c-stats__card {
  background: #1e293b;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}

.c-stats__number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.c-stats__label {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  margin-top: 8px;
  line-height: 1.4;
}

.c-stats__desc {
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .c-stats__number { font-size: 28px; }
}

/* ============================================================
   Features Component
   ============================================================ */
.c-features { padding: 80px 0; }

.c-features__row { padding: 48px 0; }
.c-features__row + .c-features__row { border-top: 1px solid #1e293b; }
.c-features__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.c-features__name {
  font-size: 22px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.c-features__text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .c-features__row .col-md-6 + .col-md-6 { margin-top: 32px; }
}

/* ============================================================
   Process Component
   ============================================================ */
.c-process { padding: 80px 0; }

.c-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.c-process__step {
  position: relative;
  padding: 32px 24px;
  background: #1e293b;
  border-radius: 12px;
}

.c-process__num {
  display: inline-block;
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.c-process__name {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}

.c-process__text {
  font-size: 15px;
  color: #94a3b8;
  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; }
}

/* ============================================================
   Team Component
   ============================================================ */
.c-team { padding: 80px 0; }
.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 #1e293b;
}
.c-team__name { font-size: 17px; font-weight: 700; color: #f1f5f9; margin-bottom: 4px; }
.c-team__role { font-size: 14px; color: #64748b; }

/* ============================================================
   Testimonials Component
   ============================================================ */
.c-testimonials { padding: 80px 0; }
.c-testimonials--quotes { background: #fafaf9; }
.c-testimonials--quotes .c-section-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.c-testimonials--quotes .c-section-label { color: var(--accent); }
.c-testimonials--quotes .c-section-title { color: #111827; }

.c-testimonials__grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.c-testimonials__quote {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 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__avatar {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.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 Component
   ============================================================ */
.c-cta { background: var(--accent); padding: 64px 0; text-align: center; }
.c-cta__title { font-size: 32px; font-weight: 800; color: #ffffff; margin-bottom: 16px; }
.c-cta__desc { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.c-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.c-cta--newsletter {
  background: #fafaf9;
  padding: 72px 0 64px;
  text-align: left;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  border-bottom: 1px solid rgba(15, 23, 42, 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-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(15, 23, 42, 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: #111827;
  color: #ffffff;
  white-space: nowrap;
}

.c-cta__newsletter-note {
  margin: 20px 0 0;
  font-size: 12px;
  color: #6b7280;
}

.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;
}

@media (max-width: 768px) {
  .c-cta__newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .c-cta__newsletter-title { font-size: 22px; }
}

/* ============================================================
   Pricing Component
   ============================================================ */
.c-pricing { padding: 80px 0; }

.c-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.c-pricing__card {
  background: #1e293b;
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.c-pricing__card--featured {
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.c-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c-pricing__plan {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.c-pricing__price { margin-bottom: 16px; }
.c-pricing__amount {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-mono);
}
.c-pricing__amount sup {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
  position: relative;
  top: -2px;
}
.c-pricing__period { font-size: 16px; color: #64748b; }

.c-pricing__desc {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
  line-height: 1.6;
}

.c-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}
.c-pricing__features li {
  padding: 8px 0;
  font-size: 14px;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 24px;
  position: relative;
}
.c-pricing__features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

@media (max-width: 992px) {
  .c-pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .c-pricing__card--featured { transform: none; }
}

/* ============================================================
   Contact Component
   ============================================================ */
.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-size: 28px; font-weight: 800; color: #f1f5f9; margin-bottom: 32px; }
.c-contact__form input,
.c-contact__form select,
.c-contact__form textarea {
  width: 100%;
  background: #1e293b;
  border: 1px solid #334155;
  color: #e2e8f0;
  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; }
.c-contact__form select option { background: #1e293b; }
.c-contact__form button { cursor: pointer; }
.c-contact__info-title { font-size: 20px; font-weight: 700; color: #f1f5f9; margin-bottom: 24px; }
.c-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #94a3b8;
}
.c-contact__info-item i { color: var(--accent); font-size: 16px; margin-top: 3px; min-width: 20px; }
.c-contact__info-item a { color: #94a3b8; text-decoration: none; }
.c-contact__info-item a:hover { color: var(--accent); }

/* ============================================================
   Footer Component
   ============================================================ */
.c-footer { background: #0f172a; padding: 64px 0 0; border-top: 1px solid #1e293b; color: #94a3b8; }
.c-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.c-footer__logo { font-size: 20px; font-weight: 800; color: #f1f5f9; text-decoration: none; display: inline-block; margin-bottom: 12px; }
.c-footer__logo span { color: var(--accent); }
.c-footer__tagline { font-size: 14px; color: #64748b; line-height: 1.6; }
.c-footer__col h4 { font-size: 14px; font-weight: 700; color: #e2e8f0; 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; color: #94a3b8; font-size: 14px; }
.c-footer__col ul li a { color: #94a3b8; }
.c-footer__col ul li a:hover { color: var(--accent); }
.c-footer__col ul a { color: #94a3b8; 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 #1e293b;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
}
.c-footer__legal { display: flex; gap: 20px; }
.c-footer__legal a { color: #64748b; text-decoration: none; font-size: 13px; }
.c-footer__legal a:hover { color: #94a3b8; }
@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;
  inset: auto 16px 16px 16px;
  max-width: 720px;
  margin-left: auto;
  z-index: 1080;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 20px 50px rgba(15,23,42,0.18);
  border-radius: 12px;
  padding: 14px 18px;
}
.c-cookie[hidden] { display: none !important; }

.c-cookie--bar {
  inset: auto 0 0 0;
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  left: 0;
  right: 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--bar .c-cookie__link {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.c-cookie--bar .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 Page
   ============================================================ */
.c-about { padding: 80px 0; }
.c-about__wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.c-about__body { font-size: 17px; line-height: 1.8; color: #94a3b8; }
.c-about__body p { margin-bottom: 24px; }
.c-about__body h3 { font-size: 22px; font-weight: 700; color: #f1f5f9; margin: 36px 0 12px; }

.c-values { padding: 64px 0; background: #1e293b; }
.c-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.c-values__item {
  padding: 24px;
  background: #0f172a;
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}
.c-values__item p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   Blog Reading Width (MANDATORY)
   ============================================================ */
.c-post__body,
.c-post-body,
.c-article__body,
.c-blog__body {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.85;
  color: #94a3b8;
}
.c-post__body h2,
.c-post-body h2,
.c-article__body h2,
.c-blog__body h2 {
  font-size: 26px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 40px 0 16px;
}
.c-post__body h3,
.c-post-body h3,
.c-article__body h3,
.c-blog__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin: 32px 0 12px;
}
.c-post__body p,
.c-post-body p,
.c-article__body p,
.c-blog__body p { margin-bottom: 20px; }
.c-post__body img,
.c-post-body img,
.c-article__body img,
.c-blog__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.blog-img-full { max-width: none; width: 100%; }

/* ============================================================
   Misc utilities
   ============================================================ */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
