/* ZANOMA 2.0 — Premium Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Lato:wght@300;400;700;900&display=swap');

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

:root {
  --bg: #080B12;
  --bg2: #0D1018;
  --bg3: #121620;
  --bg4: #171C28;
  --border: rgba(255,255,255,0.06);
  --orange: #7fdc1e;
  --orange-dim: rgba(127,220,30,0.12);
  --cyan: #06B6D4;
  --cyan-dim: rgba(6,182,212,0.12);
  --green: #10B981;
  --gold: #F59E0B;
  --text: #D8D8E8;
  --text-muted: #7878A0;
  --text-dim: #4A4A6A;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }

a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cyan); }

.accent { color: var(--orange); }
.accent-cyan { color: var(--cyan); }

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

.section {
  padding: 80px 0;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(8,11,18,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.nav-brand .z { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #e06610; color: var(--white) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  margin-bottom: 20px;
  position: relative;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cyan);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover {
  background: #e06610;
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== LOGO WALL ===== */
.logo-wall {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-wall-title {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: center;
  align-items: center;
}
.logo-grid img {
  height: 36px;
  width: auto;
  max-width: 120px;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
  object-fit: contain;
}
.logo-grid img:hover {
  opacity: 0.85;
}

/* Text-based logo wall */
.logo-text-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: center;
  align-items: center;
}
.logo-text-item {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  background: var(--bg3);
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  letter-spacing: 0.5px;
  opacity: 0.7;
  transition: opacity 0.3s, border-color 0.3s;
}
.logo-text-item:hover {
  opacity: 1;
  border-color: var(--orange);
}

/* ===== SERVICE CARDS ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.service-price { font-size: 14px; color: var(--orange); font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.service-time { font-size: 11px; color: var(--cyan); font-weight: 700; margin-top: 14px; text-transform: uppercase; letter-spacing: 1.5px; }

/* ===== HOW IT WORKS (PIPELINE) ===== */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.pipe-step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 16px;
  text-align: center;
  position: relative;
}
.pipe-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 18px;
  z-index: 1;
}
.pipe-step:last-child::after { display: none; }
.pipe-num { font-size: 10px; font-weight: 900; letter-spacing: 2px; color: var(--orange); margin-bottom: 8px; }
.pipe-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.pipe-label { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pipe-desc { font-size: 12px; color: var(--text-muted); }
.pipe-who { font-size: 10px; color: var(--cyan); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 8px; }

/* ===== CTA BLOCK ===== */
.cta-block {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-radius: var(--radius);
  margin: 40px 0;
}
.cta-block h2 { margin-bottom: 16px; }
.cta-block p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ===== CASE STUDY ===== */
.case-study {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.case-study-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-dim);
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.case-study-stat {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.case-study-stat div {
  text-align: center;
}
.case-study-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}
.case-study-stat .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== POST / PAGE CONTENT ===== */
.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.post-content h1 {
  margin-bottom: 24px;
}
.post-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}
.post-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}
.post-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.post-content ul, .post-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.post-content li {
  margin-bottom: 8px;
}
.post-content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
}
.post-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .pipeline-grid { grid-template-columns: 1fr 1fr; }
  .case-study { grid-template-columns: 1fr; }
  .pipe-step::after { display: none; }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 120px 0 60px; }
}
