/* 997website.com — Premium Dark Theme v2 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --gold:    #e8950e;
  --gold-rgb: 232,149,14;
  --dark:    #f0f4fa;
  --darker:  #e4eaf4;
  --card:    #ffffff;
  --card-border: #e0e6ef;
  --text:    #333345;
  --muted:   #6b7188;
  --white:   #ffffff;
  --green:   #16a34a;
  --red:     #dc2626;
  --navy:    #1a1f3a;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(165deg, #e8eef8 0%, #f0f4fa 30%, #f5f0ff 60%, #eef4fb 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: #c47d08; text-decoration: none; }

/* ── Scroll animation ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Nav ── */
nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo span { color: var(--navy); }

.logo-img {
  height: 32px;
  width: auto;
  max-width: min(200px, 58vw);
  display: block;
  transition: transform 0.2s;
}
.logo:hover .logo-img { transform: scale(1.03); }

.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a {
  color: #444; font-weight: 500; font-size: 0.88rem;
  padding: 0.4rem 0.7rem; border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--gold); background: rgba(var(--gold-rgb), 0.08); }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 2px 12px rgba(var(--gold-rgb), 0.3);
  transition: all 0.25s !important;
}
.nav-cta:hover {
  background: #c47d08 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.45) !important;
}

.nav-toggle {
  display: none;
  background: var(--gold);
  color: #fff !important;
  border: none;
  font-size: 0.85rem;
  font-weight: 900;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  line-height: 1;
  min-width: 56px;
  min-height: 44px;
  letter-spacing: 0.05em;
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 6rem 2rem 5rem;
  background: linear-gradient(135deg, #0f1628 0%, #1a2340 40%, #1e2a4a 70%, #162040 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #e8eef8);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.hero h1 span { color: #fff; }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 1.1rem 2.75rem;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(var(--gold-rgb), 0.35);
  position: relative;
  z-index: 1;
}

.hero-cta:hover {
  background: #c47d08;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--gold-rgb), 0.45);
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* ── Price badge ── */
.price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(var(--gold-rgb), 0.35);
  border-radius: 14px;
  padding: 1.75rem 3rem;
  margin: 2.5rem auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  transition: all 0.3s;
}
.price-badge:hover { border-color: var(--gold); transform: translateY(-2px); }

.price-retail {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  text-decoration: line-through;
}

.price-sale {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* ── Sections ── */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

section h2 span { color: var(--gold); }

.section-sub {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ── Cards grid ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 6px 28px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(var(--gold-rgb), 0.3);
}
.card:hover::before { opacity: 1; }

.card-icon { font-size: 2.2rem; margin-bottom: 1rem; display: inline-block; }
.card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 1rem; line-height: 1.65; }

/* ── Check list ── */
.checklist { list-style: none; }
.checklist li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1.05rem;
}
.checklist li::before { content: "✓"; color: var(--gold); font-weight: 900; flex-shrink: 0; }

/* ── Quote block ── */
.quote {
  background: var(--card);
  border-left: 4px solid var(--gold);
  padding: 1.75rem 2rem;
  border-radius: 0 14px 14px 0;
  margin: 2.5rem 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  position: relative;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
}
.quote::after {
  content: '"';
  position: absolute;
  top: 8px;
  right: 20px;
  font-size: 4rem;
  color: rgba(var(--gold-rgb), 0.12);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.88rem;
}

/* ── Form ── */
.form-wrap {
  background: var(--card);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 50px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
}

.form-wrap h2 { margin-bottom: 0.5rem; }

.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input, textarea, select {
  width: 100%;
  background: #f5f7fb;
  border: 2px solid var(--card-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
input::placeholder, textarea::placeholder { color: #999; }

textarea { min-height: 100px; resize: vertical; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 1rem 2.25rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), 0.25);
  letter-spacing: -0.01em;
}

.btn:hover { background: #c47d08; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(var(--gold-rgb), 0.35); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: none;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

.success-msg {
  display: none;
  background: var(--green);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  margin-top: 1rem;
}

/* ── Urgency banner ── */
.urgency {
  background: linear-gradient(135deg, var(--gold), #c47d08);
  color: #fff;
  text-align: center;
  padding: 0.85rem 1rem;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(var(--gold-rgb), 0.3);
}

/* ── Footer ── */
footer {
  background: #0f1628;
  border-top: none;
  text-align: center;
  padding: 2.5rem 2rem;
  color: #8890a8;
  font-size: 0.92rem;
}

footer a { color: var(--gold); }
footer p { line-height: 1.6; }

/* ── About section ── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.bio-stat {
  background: var(--card);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--card-border);
  margin-bottom: 1rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.bio-stat:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }

.bio-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.bio-stat .lbl {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── Portfolio ── */
.portfolio-item {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
a.portfolio-item {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
a.portfolio-item:hover {
  border-color: rgba(var(--gold-rgb), 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.portfolio-preview {
  background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid var(--card-border);
}

.portfolio-info { padding: 1.5rem; }
.portfolio-info h3 { color: var(--navy); margin-bottom: 0.3rem; font-weight: 800; }
.portfolio-info p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

/* ── Responsive (mobile 90% of views) ── */
@media (max-width: 992px) {
  .nav-toggle { display: block !important; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex !important; }
  .nav-links a { padding: 0.75rem 1rem; display: block; border-bottom: 1px solid var(--card-border); border-radius: 0; font-size: 0.95rem; }
  .nav-links a:last-child { border-bottom: none; }
  nav { position: sticky; padding: 0.75rem 1.25rem; }
}
@media (max-width: 768px) {
  .bio-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
  section { padding: 3.5rem 1.25rem; }
  section h2 { font-size: 1.4rem; }
  .section-sub { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .card { padding: 1.5rem; }
  .form-wrap { padding: 1.5rem; }
  .price-badge { padding: 1.25rem 2rem; margin: 2rem auto; }
}

/* ── Hero badge & CTA row ── */
.hero-badge {
  display: inline-block;
  background: rgba(var(--gold-rgb), 0.15);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 1rem;
  color: #b0b0c0;
  max-width: 640px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.hero-cta-row {
  margin-top: 2.25rem;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-cta-outline {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}
.hero-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}
section .hero-cta-outline {
  border-color: var(--gold);
  color: var(--gold);
}
section .hero-cta-outline:hover {
  background: rgba(var(--gold-rgb), 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Stats strip ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: -2.5rem auto 0;
  position: relative;
  z-index: 2;
  padding: 0 1.25rem;
}

.stat-box {
  background: var(--card);
  border-radius: 14px;
  padding: 1.4rem 0.8rem;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.stat-box:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  font-weight: 600;
}

/* ── Section labels ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}
.section-label-red { background: rgba(239,68,68,0.12); color: #ef4444; }
.section-label-gold { background: rgba(var(--gold-rgb),0.12); color: var(--gold); }
.section-label-green { background: rgba(34,197,94,0.12); color: #22c55e; }

section:has(.section-label) { text-align: center; }

/* ── Pain list ── */
.pain-list {
  max-width: 620px;
  margin: 1.5rem auto 0;
  text-align: left;
}

.pain-item {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--card-border);
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.55;
}
.pain-item:first-child { border-top: 1px solid var(--card-border); }
.pain-item strong { color: #ccc; }

/* ── Pain section ── */
.pain-section {
  background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.02));
  border-top: 1px solid rgba(239,68,68,0.15);
  border-bottom: 1px solid rgba(239,68,68,0.15);
  max-width: 100%;
  padding: 5rem 2rem;
}

/* ── Empathy section ── */
.empathy-section {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 16px;
  max-width: 1200px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* ── Included section ── */
.included-section {
  background: rgba(255,255,255,0.6);
  max-width: 100%;
  padding: 5rem 3rem;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 0 40px rgba(0,0,0,0.03);
}
.included-section > div { max-width: 1200px; margin: 0 auto; }

/* ── Step number ── */
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c47d08);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), 0.25);
}

/* ── Showcase grid (home page site previews) ── */
.showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: 1200px;
}
.showcase-card { width: calc(25% - 1rem); min-width: 200px; }

.showcase-card {
  display: block;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  border-color: rgba(var(--gold-rgb), 0.4);
}

.showcase-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.showcase-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
}

.showcase-info {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.showcase-info strong {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}
.showcase-info span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .showcase-card { width: calc(50% - 0.5rem); min-width: 140px; }
  .showcase-img { height: 110px; }
  .showcase-info { padding: 0.65rem 0.75rem; }
}

/* ── Newsletter section ── */
.newsletter-section {
  max-width: 100%;
  padding: 0 2rem;
}
.newsletter-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
}
.newsletter-box .form-input {
  background: #f5f7fb;
  border: 2px solid var(--card-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.newsletter-box .form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

/* ── Blog ── */
.blog-index .blog-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.blog-list {
  list-style: none;
  max-width: 40rem;
}
.blog-card {
  margin-bottom: 1rem;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.blog-card:hover { border-color: rgba(var(--gold-rgb), 0.3); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.blog-card-link {
  display: block;
  padding: 1.5rem 1.75rem;
  color: inherit;
  text-decoration: none !important;
}
.blog-card-link:hover .blog-card-title { color: var(--gold); }
.blog-card-date {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.blog-card-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.blog-card-excerpt {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}
.blog-article {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}
.blog-article h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.blog-meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.blog-meta a { color: var(--gold); }
.blog-body {
  font-size: 1.05rem;
  line-height: 1.75;
}
.blog-body p { margin-bottom: 1.15rem; }
.blog-body h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.blog-body .blog-lede { font-size: 1.1rem; color: var(--text); }
.blog-body .muted { color: var(--muted); font-size: 0.95rem; }
.blog-footer-nav {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  font-size: 1rem;
}

.crm-showcase {
  padding: 4rem 1.5rem;
}
.crm-mockup {
  transition: transform 0.3s, box-shadow 0.3s;
}
.crm-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.14);
}
@media (max-width: 640px) {
  .crm-mockup div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .crm-mockup div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
