/* =========================================================
   dev.lomar.ai — Landing Pages & Blog — Design Extension
   Baut auf styles.css auf. Keine eigenen Farben oder Fonts —
   alles nutzt die bestehenden CSS-Variablen.
   ========================================================= */

/* ===== LP NAV (identisch zur Main-Nav, immer "scrolled") ===== */
.lp-nav {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.lp-nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 10px 10px 10px 32px;
  border-radius: 100px;
  border: 1px solid var(--bdr);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  min-width: min(900px, 90vw);
  transition: all 0.5s var(--ease);
}
.lp-nav-logo {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-secondary);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ac);
  box-shadow: 0 0 12px rgba(var(--ac-rgb), 0.4);
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.lp-nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s var(--ease);
  position: relative;
}
.lp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ac);
  transition: width 0.3s var(--ease);
}
.lp-nav-links a:hover,
.lp-nav-active { color: var(--color-secondary) !important; }
.lp-nav-links a:hover::after { width: 100%; }
.lp-nav-cta {
  padding: 12px 28px !important;
  border-radius: 100px;
  background: var(--ac);
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em !important;
  transition: all 0.4s var(--ease) !important;
}
.lp-nav-cta::after { display: none !important; }
.lp-nav-cta:hover {
  background: var(--color-secondary) !important;
  box-shadow: 0 0 30px rgba(var(--ac-rgb), 0.3);
  transform: translateY(-1px);
}

/* ===== BREADCRUMB ===== */
.lp-breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff);
}
.lp-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.lp-breadcrumb a:hover { color: var(--ac); }

/* ===== LP HERO ===== */
.lp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background: var(--color-background-dark);
  overflow: hidden;
}
.lp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(var(--ac-rgb), 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.lp-wrap {
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.lp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ac);
  background: rgba(var(--ac-rgb), 0.08);
  border: 1px solid rgba(var(--ac-rgb), 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  font-family: var(--ff);
}
.lp-hero-h1 {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
}
.lp-accent { color: var(--ac); }
.lp-hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 44px;
}
.lp-hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Trust badges — matchen das CTA-trust-badge vom Main */
.lp-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-trust-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--ff);
  letter-spacing: 0.02em;
}

/* ===== BUTTONS — nutzen die bestehenden Stile aus styles.css ===== */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 100px;
  background: var(--ac);
  color: var(--bg);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.lp-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.lp-btn-primary:hover::before { transform: translateX(100%); }
.lp-btn-primary svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s var(--ease); }
.lp-btn-primary:hover { box-shadow: 0 0 40px rgba(var(--ac-rgb), 0.25); transform: translateY(-2px); }
.lp-btn-primary:hover svg { transform: translateX(4px); }
.lp-btn-large { padding: 18px 44px; font-size: 0.96rem; }
.lp-btn-ghost {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.lp-btn-ghost:hover { color: #fff; }
.lp-btn-ghost-dark {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s;
}
.lp-btn-ghost-dark:hover { color: var(--color-secondary); }

/* ===== SECTIONS ===== */
.lp-section {
  padding: 110px 0;
  background: var(--color-background);
}
.lp-section-dark {
  background: var(--color-background-dark);
}
.lp-section-neutral {
  background: var(--bg-c);
}

/* Section header — identisch zu sec-l, sec-t, sec-d */
.lp-section-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ac);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff);
}
.lp-section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--ac);
}
.lp-section-h2 {
  font-family: var(--fd);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 56px;
}
.lp-section-dark .lp-section-h2 { color: #fff; }

/* ===== TWO-COL ===== */
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lp-lead {
  font-family: var(--fd);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 20px;
}
.lp-text-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.lp-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}
.lp-check-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.93rem;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--bdr);
  line-height: 1.65;
}
.lp-check-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ac);
  font-weight: 700;
}
.lp-check-list li strong { color: var(--color-text); }

/* ===== COMPARE TABLE ===== */
.lp-compare-card {
  background: var(--color-surface);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}
.lp-compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  padding: 13px 20px;
  border-bottom: 1px solid var(--bdr);
  font-size: 0.85rem;
  font-family: var(--ff);
}
.lp-compare-header {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lp-accent-cell { color: var(--ac); font-weight: 700; }

/* ===== ARCHITECTURE CARD ===== */
.lp-architecture-card {
  background: var(--color-secondary);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
}
.lp-arch-node {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--r) - 2px);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-arch-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--ac-rgb), 0.12);
  border-radius: 8px;
  margin: 0 auto 6px;
}
.lp-arch-icon svg { width: 18px; height: 18px; stroke: var(--ac); fill: none; }
.lp-arch-orchestrator .lp-arch-icon { background: rgba(var(--ac-rgb), 0.18); }
.lp-arch-node strong { font-family: var(--fd); font-size: 0.86rem; color: #fff; display: block; font-weight: 700; }
.lp-arch-node small { font-size: 0.74rem; color: rgba(255,255,255,0.35); font-family: var(--ff); }
.lp-arch-orchestrator {
  margin-bottom: 8px;
  border-color: rgba(var(--ac-rgb), 0.3);
  background: rgba(var(--ac-rgb), 0.07);
}
.lp-arch-arrows { color: rgba(255,255,255,0.2); font-size: 1.1rem; margin: 8px 0; letter-spacing: 10px; }
.lp-arch-agents-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }

/* ===== SERVICES GRID ===== */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 30px;
  transition: all 0.4s var(--ease);
}
.lp-section:not(.lp-section-dark) .lp-service-card {
  background: var(--color-surface);
  border-color: var(--bdr);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.lp-service-card:hover {
  border-color: rgba(var(--ac-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.lp-service-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--ac-rgb), 0.1);
  border-radius: calc(var(--r) - 4px);
  margin-bottom: 18px;
}
.lp-service-icon svg { width: 20px; height: 20px; stroke: var(--ac); fill: none; }
.lp-service-card h3 {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.lp-section:not(.lp-section-dark) .lp-service-card h3 { color: var(--color-text); }
.lp-service-card p {
  font-size: 0.87rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.lp-section:not(.lp-section-dark) .lp-service-card p { color: var(--color-text-light); }
.lp-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ac);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
  font-family: var(--ff);
}
.lp-card-link:hover { opacity: 0.7; }

/* ===== STEPS ===== */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.lp-step-num {
  font-family: var(--fd);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(var(--ac-rgb), 0.1);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 14px;
}
.lp-step-content h3 {
  font-family: var(--fd);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.lp-step-content p {
  font-size: 0.87rem;
  line-height: 1.72;
  color: var(--color-text-light);
}

/* ===== FAQ ===== */
.lp-faq-wrap { max-width: 780px; }
.lp-faq-list { display: flex; flex-direction: column; }
.lp-faq-item { border-bottom: 1px solid var(--bdr); }
.lp-faq-item summary {
  font-family: var(--fd);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 20px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--ac);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 20px;
}
.lp-faq-item[open] summary::after { transform: rotate(45deg); }
.lp-faq-item summary:hover { color: var(--ac); }
.lp-faq-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-light);
  padding-bottom: 20px;
}
.lp-faq-item p strong { color: var(--color-text); }

/* ===== CTA SECTION ===== */
.lp-cta {
  background: var(--color-background-dark);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(var(--ac-rgb), 0.08) 0%, transparent 70%);
}
.lp-cta-inner { text-align: center; position: relative; z-index: 2; }
.lp-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-family: var(--ff);
}
.lp-cta-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: ping-green 2s infinite;
}
@keyframes ping-green {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.lp-cta-h2 {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.lp-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.lp-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.lp-cta-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  font-family: var(--ff);
}

/* ===== FOOTER ===== */
.lp-footer {
  background: #060606;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.lp-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.lp-footer-brand {
  font-family: var(--fd);
  font-weight: 900;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.03em;
}
.lp-footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-footer-links a {
  font-family: var(--ff);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.lp-footer-links a:hover { color: var(--ac); }
.lp-footer-copy {
  font-family: var(--ff);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.04em;
}

/* ===== BLOG ===== */
.blog-hero {
  background: var(--color-background-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.blog-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(var(--ac-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(var(--ac-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.blog-card-body { padding: 28px; flex: 1; }
.blog-card-tag {
  font-family: var(--ff);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ac);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 0.87rem;
  line-height: 1.72;
  color: var(--color-text-light);
}
.blog-card-footer {
  padding: 14px 28px;
  border-top: 1px solid var(--bdr);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-date { font-family: var(--ff); font-size: 0.74rem; color: var(--color-text-light); }
.blog-card-read { font-family: var(--ff); font-size: 0.78rem; font-weight: 700; color: var(--ac); }

/* ===== ARTICLE ===== */
.article-hero {
  background: var(--color-background-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(var(--ac-rgb), 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.article-wrap { max-width: 780px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.article-tag-inline {
  font-family: var(--ff);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ac);
  background: rgba(var(--ac-rgb), 0.1);
  border: 1px solid rgba(var(--ac-rgb), 0.2);
  padding: 3px 12px;
  border-radius: 100px;
}
.article-h1 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
}
.article-lead {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
}
.article-body { padding: 80px 0 100px; background: var(--color-background); }
.article-content h2 {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin: 52px 0 16px;
  line-height: 1.2;
}
.article-content h3 {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 32px 0 10px;
  letter-spacing: -0.02em;
}
.article-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 18px;
}
.article-content ul, .article-content ol { padding-left: 0; margin-bottom: 20px; list-style: none; }
.article-content ul li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--bdr);
}
.article-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--ac); font-weight: 700; }
.article-content ol { list-style: decimal; padding-left: 20px; }
.article-content ol li { font-size: 0.95rem; line-height: 1.72; color: var(--color-text-light); margin-bottom: 8px; }
.article-content strong { color: var(--color-text); font-weight: 700; }
.article-blockquote {
  border-left: 3px solid var(--ac);
  padding: 20px 28px;
  background: rgba(var(--ac-rgb), 0.04);
  border-radius: 0 var(--r) var(--r) 0;
  margin: 32px 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  font-family: var(--fd);
}
.article-cta-box {
  background: var(--color-secondary);
  border-radius: var(--r);
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}
.article-cta-box h3 {
  font-family: var(--fd);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.article-cta-box p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 24px; }
.article-related { background: var(--bg-c); padding: 80px 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lp-nav-inner { min-width: min(700px, 90vw); gap: 28px; }
  .lp-services-grid { grid-template-columns: 1fr 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .lp-two-col { grid-template-columns: 1fr; gap: 48px; }
  .lp-services-grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .lp-arch-agents-row { grid-template-columns: 1fr; }
  .lp-hero-ctas { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .lp-nav { display: none; }
  .lp-hero { padding: 100px 0 80px; min-height: auto; }
  .lp-section { padding: 72px 0; }
  .lp-steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .lp-cta-buttons { flex-direction: column; align-items: center; }
  .article-wrap { padding: 0 20px; }
  .article-body { padding: 60px 0 80px; }
}
