/* ==============================
   BRANDFORGE AI — THEME CSS
   ============================== */

:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE1;
  --fg: #111111;
  --fg-muted: #6B6459;
  --fg-faint: #9C958B;
  --accent: #C8871A;
  --accent-light: #F5DFA0;
  --border: #DDD5C8;
  --surface: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==============================
   TYPOGRAPHY
   ============================== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ==============================
   NAV
   ============================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  border-radius: 4px;
}

.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
  font-family: 'DM Sans', sans-serif;
}

.nav-link:hover {
  color: var(--fg);
}

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  padding: 100px 48px 100px;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-pillars {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.05em;
}

.pillar-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

.pillar-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Ambient decorations */
.hero-ambient {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.ambient-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 { width: 400px; height: 400px; opacity: 0.6; }
.ring-2 { width: 650px; height: 650px; opacity: 0.35; }
.ring-3 { width: 900px; height: 900px; opacity: 0.15; }

.ambient-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 135, 26, 0.12) 0%, transparent 70%);
}

/* ==============================
   MANIFESTO
   ============================== */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 800px;
}

.manifesto-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.manifesto-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--bg);
}

.manifesto-body {
  max-width: 600px;
}

.manifesto-body p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 16px;
  font-weight: 300;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-desc {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.4;
  max-width: 120px;
}

.stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(250, 247, 242, 0.12);
}

/* ==============================
   DELIVERABLES
   ============================== */
.deliverables {
  padding: 100px 48px;
  background: var(--bg);
}

.deliverables-inner {
  max-width: 1100px;
}

.deliverables-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.deliverables-headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  margin-bottom: 56px;
  max-width: 500px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.deliv-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}

.deliv-card:hover {
  background: var(--surface);
}

.deliv-icon {
  color: var(--accent);
  margin-bottom: 4px;
}

.deliv-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.deliv-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ==============================
   PROCESS
   ============================== */
.process {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-inner {
  max-width: 900px;
}

.process-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.process-headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  margin-bottom: 64px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 32px;
}

.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 20px;
  flex-shrink: 0;
}

/* ==============================
   CLOSING
   ============================== */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}

.closing-inner {
  max-width: 700px;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 40px;
}

.closing-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.closing-credit {
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.closing-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.closing-vision {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  padding: 64px 48px 48px;
  background: var(--fg);
  color: var(--bg);
}

.footer-inner {
  max-width: 800px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  border-radius: 3px;
}

.footer-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 40px;
  font-weight: 300;
}

.footer-rule {
  width: 100%;
  height: 1px;
  background: rgba(250, 247, 242, 0.1);
  margin-bottom: 24px;
}

.footer-links-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-link {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}

.footer-link:hover { color: rgba(250, 247, 242, 0.85); }

.footer-legal {
  font-size: 11px;
  color: rgba(250, 247, 242, 0.3);
  line-height: 1.6;
  font-weight: 300;
}

/* ==============================
   STATIC PAGES SHARED
   ============================== */
.page-wrap {
  min-height: calc(100vh - 73px);
  display: flex;
  flex-direction: column;
}

.page-header {
  padding: 64px 48px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.page-header .eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.page-header h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-header .lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 640px;
  font-weight: 300;
}

.page-content {
  padding: 48px;
  flex: 1;
}

/* FAQ accordion */
.faq-section {
  max-width: 800px;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--fg-faint);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--fg-muted);
  font-weight: 300;
}

.faq-item.open .faq-answer { display: block; }

/* Form styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--fg);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 135, 26, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6459' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover { background: #2a2a2a; }
.btn-primary:active { transform: scale(0.98); }

/* Legal content */
.legal-body {
  max-width: 800px;
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.legal-body p,
.legal-body li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--fg-muted);
  font-weight: 300;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-body li { margin-bottom: 6px; }

.legal-meta {
  font-size: 11px;
  color: var(--fg-faint);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Split layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1000px;
}

/* Info panel */
.info-panel {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-item:first-child { padding-top: 0; }

.info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.info-value {
  font-size: 14px;
  color: var(--fg);
  font-weight: 400;
}

/* Success state */
.success-panel {
  background: #f0faf5;
  border: 1px solid #c8e6d0;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.success-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.success-body {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Search bar */
.search-bar {
  max-width: 600px;
  margin-bottom: 40px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.search-icon {
  color: var(--fg-faint);
  font-size: 16px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--fg);
  outline: none;
}

.search-input::placeholder { color: var(--fg-faint); }

/* Tier table */
.tier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.tier-table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}

.tier-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  font-weight: 300;
}

.tier-table td:first-child {
  font-weight: 500;
  color: var(--fg);
}

/* Team card */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.team-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 8px;
}

.team-card-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.team-card-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* How it works grid */
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px 0;
}

.how-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.how-card-icon {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 12px;
}

.how-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.how-card-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* CTA banner */
.cta-banner {
  background: var(--fg);
  color: var(--bg);
  border-radius: 8px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
}

.cta-banner h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--bg);
}

.cta-banner p {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.6);
  margin-top: 6px;
  font-weight: 300;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--fg);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.cta-btn:hover { background: #d4961f; }

/* ==============================
   NAV (updated)
   ============================== */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,247,242,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 48px; max-width: 1400px; margin: 0 auto; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: var(--fg); color: var(--bg); font-family: 'Space Mono', monospace; font-size: 11px; border-radius: 5px; }
.brand-name { font-size: 15px; font-weight: 600; color: var(--fg); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 13px; font-weight: 500; color: var(--fg-muted); text-decoration: none; padding: 8px 12px; border-radius: 6px; transition: color 0.15s, background 0.15s; }
.nav-link:hover { color: var(--fg); background: var(--bg-alt); }
.nav-cta { display: inline-flex; align-items: center; padding: 9px 18px; background: var(--fg); color: var(--bg); border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background 0.15s; margin-left: 4px; }
.nav-cta:hover { background: #2a2a2a; }
.nav-hamburger { display: none; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-hamburger span { display: block; width: 100%; height: 2px; background: var(--fg); border-radius: 2px; transition: all 0.2s; }

/* ==============================
   HERO
   ============================== */
.hero { padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1400px; margin: 0 auto; }
.hero-inner { max-width: 560px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 24px; font-weight: 500; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2.4s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline { font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 20px; }
.hero-headline em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero-sub { font-size: 17px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 36px; font-weight: 300; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary { display: inline-flex; align-items: center; padding: 14px 28px; background: var(--fg); color: var(--bg); border-radius: 7px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.15s, transform 0.1s; }
.btn-hero-primary:hover { background: #2a2a2a; }
.btn-hero-primary:active { transform: scale(0.98); }
.btn-hero-ghost { display: inline-flex; align-items: center; padding: 13px 24px; background: transparent; color: var(--fg); border: 1.5px solid var(--border); border-radius: 7px; font-size: 14px; font-weight: 500; text-decoration: none; transition: border-color 0.15s, background 0.15s; }
.btn-hero-ghost:hover { border-color: var(--fg); background: var(--bg-alt); }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.trust-label { font-size: 12px; color: var(--fg-faint); font-weight: 400; }
.trust-sep { color: var(--fg-faint); font-size: 12px; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.brand-preview-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px; box-shadow: 0 4px 32px rgba(0,0,0,0.06); width: 100%; max-width: 360px; }
.preview-header { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.preview-logo-area { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.preview-logo-mark { width: 40px; height: 40px; background: #1A1A2E; color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; border-radius: 8px; }
.preview-logo-name { font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 400; letter-spacing: 0.1em; color: var(--fg); }
.preview-tagline { font-size: 12px; color: var(--fg-muted); font-style: italic; margin-bottom: 20px; }
.preview-colors { display: flex; gap: 8px; margin-bottom: 16px; }
.color-swatch { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.06); }
.preview-typography { display: flex; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.typo-heading, .typo-body { font-size: 11px; padding: 4px 8px; border-radius: 4px; background: var(--bg-alt); color: var(--fg-muted); }

/* ==============================
   SOCIAL PROOF
   ============================== */
.social-proof { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 48px; }
.social-proof-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.proof-label { font-size: 12px; letter-spacing: 0.06em; color: var(--fg-faint); font-weight: 400; text-align: center; }
.proof-logos { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.proof-logo { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--fg-faint); letter-spacing: 0.02em; opacity: 0.6; transition: opacity 0.2s; }
.proof-logo:hover { opacity: 1; }

/* ==============================
   SHARED SECTION STYLES
   ============================== */
.section-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; font-weight: 500; }
.section-headline { font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }

/* ==============================
   FEATURES
   ============================== */
.features { padding: 100px 48px; background: var(--bg); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 32px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.2s, box-shadow 0.2s; }
.feature-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(200, 135, 26, 0.08); }
.feature-icon { color: var(--accent); }
.feature-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; line-height: 1.3; }
.feature-desc { font-size: 14px; line-height: 1.7; color: var(--fg-muted); font-weight: 300; }
.feature-list { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 6px; }
.feature-list li { font-size: 12px; color: var(--fg-muted); font-weight: 400; padding-left: 16px; position: relative; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 11px; }

/* ==============================
   HOW IT WORKS
   ============================== */
.how-it-works { padding: 100px 48px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 56px; }
.how-step { flex: 1; display: flex; flex-direction: column; gap: 16px; padding: 0 40px 0 0; }
.how-num { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--fg-faint); letter-spacing: 0.05em; }
.how-icon { color: var(--accent); }
.how-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; line-height: 1.3; }
.how-desc { font-size: 14px; line-height: 1.7; color: var(--fg-muted); font-weight: 300; }
.how-connector { width: 48px; height: 1px; background: var(--border); margin-top: 24px; flex-shrink: 0; }

/* ==============================
   WHO IT'S FOR
   ============================== */
.who-section { padding: 100px 48px; background: var(--bg); }
.who-inner { max-width: 1200px; margin: 0 auto; }
.who-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.who-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.who-icon { color: var(--accent); }
.who-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; }
.who-desc { font-size: 13px; line-height: 1.75; color: var(--fg-muted); font-weight: 300; }
.who-tags { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 6px; }
.who-tags li { font-size: 12px; color: var(--fg-muted); padding-left: 14px; position: relative; }
.who-tags li::before { content: '·'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials { padding: 100px 48px; background: var(--fg); color: var(--bg); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials .section-eyebrow { color: var(--accent); }
.testimonials .section-headline { color: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: rgba(250,247,242,0.05); border: 1px solid rgba(250,247,242,0.1); border-radius: 10px; padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.testimonial-quote { font-size: 14px; line-height: 1.75; color: rgba(250,247,242,0.7); font-weight: 300; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(250,247,242,0.1); }
.author-avatar { width: 36px; height: 36px; background: var(--accent); color: var(--fg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 400; flex-shrink: 0; }
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-info strong { font-size: 13px; font-weight: 600; color: var(--bg); }
.author-info span { font-size: 11px; color: rgba(250,247,242,0.45); font-weight: 400; }

/* ==============================
   PREVIEW
   ============================== */
.preview-section { padding: 100px 48px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.preview-inner { max-width: 1200px; margin: 0 auto; }
.preview-intro { font-size: 16px; line-height: 1.7; color: var(--fg-muted); max-width: 600px; font-weight: 300; margin-top: 12px; margin-bottom: 48px; }
.preview-demo { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.demo-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 24px; flex: 1; min-width: 260px; }
.demo-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 12px; }
.demo-input { font-size: 13px; line-height: 1.7; color: var(--fg-muted); font-style: italic; font-weight: 300; }
.demo-arrow { font-size: 24px; color: var(--fg-faint); flex-shrink: 0; }
.demo-output { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 24px; flex: 2; min-width: 340px; }
.demo-output-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.demo-output-grid { display: flex; flex-direction: column; gap: 12px; }
.demo-row { display: flex; align-items: flex-start; gap: 16px; }
.demo-key { font-size: 11px; font-weight: 600; color: var(--fg-faint); text-transform: uppercase; letter-spacing: 0.06em; min-width: 100px; padding-top: 2px; }
.demo-val { font-size: 13px; color: var(--fg-muted); font-weight: 400; line-height: 1.5; }
.demo-colors { display: flex; gap: 6px; flex-wrap: wrap; }

/* ==============================
   PRICING TEASER
   ============================== */
.pricing-teaser { padding: 100px 48px; background: var(--bg); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: start; }
.pricing-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1100px) {
  .pricing-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .pricing-5 { grid-template-columns: 1fr; }
}
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; position: relative; display: flex; flex-direction: column; gap: 14px; }
.pricing-card.popular { border-color: var(--accent); box-shadow: 0 4px 24px rgba(200, 135, 26, 0.1); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--fg); font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; letter-spacing: 0.04em; }
.plan-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--fg); }
.plan-price { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; }
.plan-price span { font-size: 16px; font-weight: 400; color: var(--fg-muted); }
.plan-desc { font-size: 13px; line-height: 1.65; color: var(--fg-muted); font-weight: 300; }
.plan-features { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 8px; }
.plan-features li { font-size: 13px; color: var(--fg-muted); padding-left: 18px; position: relative; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 11px; font-weight: 700; }
.btn-plan { display: block; text-align: center; padding: 11px 20px; background: var(--bg-alt); color: var(--fg); border: 1px solid var(--border); border-radius: 7px; font-size: 13px; font-weight: 600; text-decoration: none; transition: border-color 0.15s, background 0.15s; margin-top: 8px; }
.btn-plan:hover { border-color: var(--fg); }
.btn-plan-primary { display: block; text-align: center; padding: 11px 20px; background: var(--fg); color: var(--bg); border-radius: 7px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background 0.15s; margin-top: 8px; }
.btn-plan-primary:hover { background: #2a2a2a; }
.pricing-note { text-align: center; font-size: 12px; color: var(--fg-faint); margin-top: 28px; font-weight: 400; }

/* ==============================
   FAQ ACCORDION
   ============================== */
.faq-section-page { padding: 100px 48px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-accordion { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; text-align: left; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--fg); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.15s; }
.faq-question:hover { color: var(--accent); }
.faq-chevron { flex-shrink: 0; font-size: 16px; color: var(--fg-faint); transition: transform 0.2s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 14px; line-height: 1.75; color: var(--fg-muted); font-weight: 300; }
.faq-item.open .faq-answer { display: block; }

/* ==============================
   FINAL CTA
   ============================== */
.final-cta { padding: 100px 48px; background: var(--bg); text-align: center; }
.final-cta-inner { max-width: 700px; margin: 0 auto; }
.final-rule { width: 48px; height: 2px; background: var(--accent); margin: 0 auto 40px; }
.final-headline { font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 16px; }
.final-sub { font-size: 16px; color: var(--fg-muted); font-weight: 300; margin-bottom: 40px; }
.final-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-final-primary { display: inline-flex; align-items: center; padding: 14px 32px; background: var(--fg); color: var(--bg); border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.15s; }
.btn-final-primary:hover { background: #2a2a2a; }
.btn-final-ghost { display: inline-flex; align-items: center; padding: 13px 24px; background: transparent; color: var(--fg-muted); border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; transition: border-color 0.15s, color 0.15s; }
.btn-final-ghost:hover { border-color: var(--fg); color: var(--fg); }
.final-trust { display: flex; align-items: center; justify-content: center; gap: 10px; }
.final-trust span { font-size: 12px; color: var(--fg-faint); }
.trust-dot { color: var(--fg-faint); }

/* ==============================
   FOOTER (updated)
   ============================== */
.footer { background: var(--fg); color: var(--bg); padding: 64px 48px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; gap: 64px; margin-bottom: 48px; }
.footer-brand-col { flex: 0 0 240px; display: flex; flex-direction: column; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-mark { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; background: var(--accent); color: var(--fg); font-family: 'Space Mono', monospace; font-size: 10px; border-radius: 4px; }
.footer-name { font-size: 14px; font-weight: 600; color: var(--bg); }
.footer-tagline { font-size: 13px; color: rgba(250,247,242,0.45); font-weight: 300; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.social-link { color: rgba(250,247,242,0.4); text-decoration: none; transition: color 0.15s; }
.social-link:hover { color: rgba(250,247,242,0.8); }
.footer-links-col { flex: 1; display: flex; gap: 48px; }
.footer-link-group { display: flex; flex-direction: column; gap: 10px; }
.footer-group-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,247,242,0.3); margin-bottom: 4px; }
.footer-link { font-size: 13px; color: rgba(250,247,242,0.5); text-decoration: none; transition: color 0.15s; font-weight: 400; }
.footer-link:hover { color: rgba(250,247,242,0.9); }
.footer-rule { height: 1px; background: rgba(250,247,242,0.1); margin-bottom: 24px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(250,247,242,0.3); font-weight: 400; }
.footer-built { font-size: 12px; color: rgba(250,247,242,0.3); font-weight: 400; }
.footer-polsia { color: rgba(250,247,242,0.5); text-decoration: none; }
.footer-polsia:hover { color: rgba(250,247,242,0.8); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr !important; gap: 48px; padding: 64px 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .who-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .how-connector { display: none; }
  .how-step { padding-right: 0; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand-col { flex: none; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 16px 24px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 10px 12px; width: 100%; }
  .nav-cta { width: 100%; text-align: center; justify-content: center; margin-left: 0; }
  .nav-hamburger { display: flex; }

  .hero { padding: 48px 24px 56px; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 15px; }

  .social-proof { padding: 32px 24px; }
  .proof-logos { gap: 28px; }

  .features, .how-it-works, .who-section, .testimonials,
  .preview-section, .pricing-teaser, .faq-section-page, .final-cta {
    padding: 64px 24px;
  }

  .preview-demo { flex-direction: column; }
  .demo-arrow { transform: rotate(90deg); }

  .footer { padding: 48px 24px 32px; }
  .footer-links-col { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 20px 48px; }
  .hero-headline { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }

  .features, .how-it-works, .who-section, .testimonials,
  .preview-section, .pricing-teaser, .faq-section-page, .final-cta {
    padding: 48px 20px;
  }
}