/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B2B;
  --orange-dark: #E55A1F;
  --orange-light: #FFF0E8;
  --dark: #1A1A1A;
  --grey: #6B7280;
  --light-grey: #F3F4F6;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --green: #10B981;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--dark);
  background: #FAFAFA;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ───────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}
.header-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}
.header-badge {
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #FF6B2B 0%, #FF9500 100%);
  color: white;
  text-align: center;
  padding: 56px 24px 48px;
}
.hero h1 {
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: inline-block;
  background: white;
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.hero-cta:active { transform: translateY(0); }

/* ── Steps ────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.step-arrow {
  color: var(--border);
  font-size: 1.2rem;
  font-weight: 300;
}

/* ── App Section ──────────────────────────────────────── */
.app-section {
  padding: 32px 16px 48px;
  max-width: 680px;
  margin: 0 auto;
}
.app-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
}

/* ── Fields ───────────────────────────────────────────── */
.field-group {
  margin-bottom: 20px;
}
.field-group.half {
  flex: 1;
  min-width: 140px;
}
.field-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.field-optional {
  font-weight: 400;
  color: var(--grey);
  font-size: 0.8rem;
}
.field-hint {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 6px;
}
.field-hint a {
  color: var(--orange);
  text-decoration: none;
}
.field-hint a:hover { text-decoration: underline; }

/* ── Upload Zone ──────────────────────────────────────── */
.upload-zone {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: 12px;
  background: var(--light-grey);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  overflow: hidden;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--orange);
  background: var(--orange-light);
}
.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-placeholder {
  text-align: center;
  padding: 24px;
  pointer-events: none;
}
.upload-icon { font-size: 2.4rem; margin-bottom: 8px; }
.upload-text { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.upload-sub { font-size: 0.8rem; color: var(--grey); margin-top: 4px; }

.photo-preview {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.remove-photo {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 2;
}
.remove-photo:hover { background: rgba(0,0,0,0.8); }

/* ── Textarea ─────────────────────────────────────────── */
.description-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  resize: none;
  transition: border-color 0.15s;
  line-height: 1.5;
}
.description-input:focus {
  outline: none;
  border-color: var(--orange);
}
.description-input::placeholder { color: #9CA3AF; }
.char-count {
  text-align: right;
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 4px;
}

/* ── Pills ────────────────────────────────────────────── */
.options-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pill-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pill {
  padding: 7px 14px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.12s;
  font-family: inherit;
}
.pill:hover { border-color: var(--orange); color: var(--orange); }
.pill.active {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}

/* ── Generate Button ──────────────────────────────────── */
.generate-btn {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.generate-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.generate-btn:active { transform: translateY(0); }
.generate-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ── Spinner ──────────────────────────────────────────── */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Result ───────────────────────────────────────────── */
.result {
  margin-top: 24px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.result-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
}
.regenerate-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: var(--grey);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.12s;
}
.regenerate-btn:hover { border-color: var(--orange); color: var(--orange); }

.result-post {
  background: var(--light-grey);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 0.97rem;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--dark);
  border-left: 3px solid var(--orange);
}

.result-hashtags {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #3B82F6;
  line-height: 1.6;
  padding: 8px 12px;
  background: #EFF6FF;
  border-radius: 8px;
}

.result-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.result-share {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.share-btn {
  flex: 1;
  min-width: 140px;
  padding: 13px 20px;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.12s;
}
.share-btn:hover { opacity: 0.88; }
.share-fb { background: #1877F2; color: white; }
.share-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.copy-btn {
  flex: 1;
  min-width: 140px;
  padding: 13px 20px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.12s;
}
.copy-btn:hover { background: var(--orange-dark); }
.copy-btn.secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--border);
}
.copy-btn.secondary:hover { border-color: var(--orange); color: var(--orange); background: var(--white); }
.copy-btn.copied { background: var(--green); }

.share-hint {
  margin-top: 14px;
  font-size: 0.83rem;
  color: var(--grey);
  background: #FFFBEB;
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #FDE68A;
}

/* ── Error ────────────────────────────────────────────── */
.error-box {
  margin-top: 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 12px 16px;
  color: #DC2626;
  font-size: 0.9rem;
}

/* ── Social Proof ─────────────────────────────────────── */
.proof {
  background: var(--dark);
  color: white;
  padding: 36px 20px;
}
.proof-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.proof-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}
.proof-label {
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-top: 4px;
}

/* ── Pricing ──────────────────────────────────────────── */
.pricing {
  padding: 56px 16px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pricing h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.pricing-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  position: relative;
  text-align: left;
}
.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-light);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 8px;
}
.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--grey); }
.price-eq {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 20px;
}
.price-features {
  list-style: none;
  margin-bottom: 24px;
}
.price-features li {
  font-size: 0.87rem;
  padding: 5px 0;
  color: var(--dark);
}
.price-features li.muted { color: #D1D5DB; }
.price-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: var(--orange);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.12s;
}
.price-cta:hover { background: var(--orange-dark); }
.price-cta.outline {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--orange);
}
.price-cta.outline:hover { background: var(--orange-light); }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: #9CA3AF;
  text-align: center;
  padding: 36px 20px;
  font-size: 0.9rem;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.footer p { margin-bottom: 6px; }
.footer-small { font-size: 0.8rem; }
.footer a { color: #9CA3AF; text-decoration: underline; }

/* ── Utilities ────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 520px) {
  .app-card { padding: 20px 16px; }
  .hero { padding: 40px 20px 36px; }
  .step-arrow { display: none; }
  .steps { gap: 16px; }
  .options-row { flex-direction: column; gap: 16px; }
  .result-actions { flex-direction: column; }
}

/* ── Header Nav ───────────────────────────────────────── */
.header-nav { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 0.88rem; font-weight: 500; color: var(--grey); text-decoration: none; padding: 7px 12px; border-radius: 8px; transition: all 0.12s; }
.nav-link:hover { color: var(--dark); background: var(--light-grey); }
.nav-link.nav-cta { background: var(--orange); color: white; font-weight: 600; }
.nav-link.nav-cta:hover { background: var(--orange-dark); }
.nav-link.muted { color: #9CA3AF; }
.logo { text-decoration: none; color: var(--dark); font-size: 1.2rem; font-weight: 800; }

/* ── Flash messages ───────────────────────────────────── */
.flash { padding: 12px 20px; font-size: 0.9rem; font-weight: 500; text-align: center; }
.flash-error { background: #FEF2F2; color: #DC2626; border-bottom: 1px solid #FECACA; }
.flash-success { background: #F0FDF4; color: #16A34A; border-bottom: 1px solid #BBF7D0; }

/* ── Auth pages ───────────────────────────────────────── */
.auth-page { min-height: calc(100vh - 60px); display: flex; align-items: center; justify-content: center; padding: 32px 16px; background: var(--light-grey); }
.auth-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 40px 36px; width: 100%; max-width: 420px; }
.auth-logo { font-size: 2.5rem; text-align: center; margin-bottom: 12px; }
.auth-title { font-size: 1.6rem; font-weight: 800; text-align: center; margin-bottom: 6px; letter-spacing: -0.01em; }
.auth-sub { text-align: center; color: var(--grey); font-size: 0.9rem; margin-bottom: 28px; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-input { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: 1rem; font-family: inherit; color: var(--dark); transition: border-color 0.15s; }
.auth-input:focus { outline: none; border-color: var(--orange); }
.auth-btn { padding: 15px; background: var(--orange); color: white; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.12s; }
.auth-btn:hover { background: var(--orange-dark); }
.auth-switch { text-align: center; font-size: 0.88rem; color: var(--grey); margin-top: 20px; }
.auth-switch a { color: var(--orange); font-weight: 600; text-decoration: none; }

/* ── Login gate ───────────────────────────────────────── */
.login-gate { text-align: center; padding: 48px 28px; }
.gate-icon { font-size: 3rem; margin-bottom: 16px; }
.gate-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.gate-sub { color: var(--grey); margin-bottom: 28px; font-size: 0.95rem; }
.gate-login { margin-top: 14px; font-size: 0.88rem; color: var(--grey); }
.gate-login a { color: var(--orange); font-weight: 600; text-decoration: none; }

/* ── Usage banner ─────────────────────────────────────── */
.usage-banner { background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 10px; padding: 12px 16px; font-size: 0.87rem; color: #92400E; margin-bottom: 16px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.usage-banner a { color: var(--orange); font-weight: 600; text-decoration: none; white-space: nowrap; }

/* ── Dashboard ────────────────────────────────────────── */
.dash-page { max-width: 720px; margin: 0 auto; padding: 24px 16px 60px; }
.dash-statbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; background: var(--white); border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow); }
.dash-greeting { font-weight: 700; font-size: 1.05rem; }
.dash-company { font-weight: 400; color: var(--grey); }
.dash-plan { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.plan-badge { padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; }
.plan-gratis { background: var(--light-grey); color: var(--grey); }
.plan-starter { background: #DBEAFE; color: #1D4ED8; }
.plan-pro { background: #EDE9FE; color: #6D28D9; }
.plan-usage { font-size: 0.85rem; color: var(--grey); }
.plan-upgrade { font-size: 0.85rem; color: var(--orange); font-weight: 600; text-decoration: none; }
.dash-new { margin-bottom: 24px; }
.dash-new-btn { display: inline-block; background: var(--orange); color: white; font-weight: 700; padding: 14px 28px; border-radius: 12px; text-decoration: none; font-size: 1rem; transition: background 0.12s; }
.dash-new-btn:hover { background: var(--orange-dark); }
.dash-section-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.post-list { display: flex; flex-direction: column; gap: 16px; }
.post-item { background: var(--white); border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow); border-left: 3px solid var(--orange); }
.post-item-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.post-platform { font-size: 0.78rem; font-weight: 600; }
.post-tone { font-size: 0.75rem; background: var(--light-grey); color: var(--grey); padding: 2px 8px; border-radius: 10px; }
.post-date { font-size: 0.75rem; color: #9CA3AF; margin-left: auto; }
.post-description { font-size: 0.82rem; color: var(--grey); margin-bottom: 10px; font-style: italic; }
.post-text { font-size: 0.93rem; line-height: 1.65; white-space: pre-wrap; color: var(--dark); margin-bottom: 8px; }
.post-hashtags { font-size: 0.8rem; color: #3B82F6; margin-bottom: 12px; }
.post-actions { display: flex; align-items: center; gap: 8px; }
.post-copy-btn { padding: 8px 16px; background: var(--orange); color: white; border: none; border-radius: 8px; font-size: 0.85rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.12s; }
.post-copy-btn:hover { background: var(--orange-dark); }
.post-copy-btn.copied { background: var(--green); }
.post-delete-btn { padding: 8px 12px; background: none; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; font-size: 0.9rem; color: var(--grey); transition: all 0.12s; }
.post-delete-btn:hover { background: #FEF2F2; border-color: #FECACA; color: #DC2626; }
.dash-empty { text-align: center; padding: 48px 20px; color: var(--grey); }
.dash-empty-icon { font-size: 2.5rem; margin-bottom: 12px; }
.dash-upgrade { margin-top: 40px; background: var(--white); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; }
.dash-upgrade h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }
.dash-pricing-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.dash-price-card { flex: 1; min-width: 200px; max-width: 260px; border: 2px solid var(--border); border-radius: 14px; padding: 24px 20px; text-align: left; position: relative; }
.dash-price-card.featured { border-color: var(--orange); }
.dash-price-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; font-size: 0.7rem; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.dash-price-name { font-weight: 700; color: var(--grey); margin-bottom: 4px; }
.dash-price-amount { font-size: 1.8rem; font-weight: 800; margin-bottom: 2px; }
.dash-price-amount span { font-size: 0.9rem; font-weight: 400; color: var(--grey); }
.dash-price-eq { font-size: 0.78rem; color: var(--green); font-weight: 500; margin-bottom: 16px; }
.dash-price-card ul { list-style: none; margin-bottom: 20px; }
.dash-price-card li { font-size: 0.85rem; padding: 4px 0; }
.dash-upgrade-btn { display: block; text-align: center; padding: 11px; background: var(--orange); color: white; border-radius: 10px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: background 0.12s; }
.dash-upgrade-btn:hover { background: var(--orange-dark); }

/* ── Admin ────────────────────────────────────────────── */
.admin-kpis { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.kpi-card { background: var(--white); border-radius: 12px; padding: 20px 24px; flex: 1; min-width: 120px; box-shadow: var(--shadow); text-align: center; border-top: 3px solid var(--border); }
.kpi-card.highlight { border-top-color: var(--orange); }
.kpi-num { font-size: 2rem; font-weight: 800; color: var(--dark); }
.kpi-label { font-size: 0.78rem; color: var(--grey); margin-top: 4px; }
.admin-section { margin-bottom: 32px; }
.admin-table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: var(--shadow); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.88rem; }
.admin-table th { background: var(--light-grey); padding: 12px 16px; text-align: left; font-weight: 600; color: var(--grey); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table a { color: var(--orange); text-decoration: none; }
.user-name { font-weight: 600; }
.user-company { font-size: 0.78rem; color: var(--grey); }
.plan-select { border: 1px solid var(--border); border-radius: 6px; padding: 4px 8px; font-size: 0.82rem; background: var(--white); cursor: pointer; font-family: inherit; }

/* ── Season templates ────────────────────────────────── */
.template-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tpl-btn {
  padding: 7px 13px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.12s;
  font-family: inherit;
  white-space: nowrap;
}
.tpl-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.tpl-btn.active { border-color: var(--orange); background: var(--orange); color: white; }

/* ── Dashboard actions ───────────────────────────────── */
.dash-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.dash-action-btn {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  transition: all 0.12s;
}
.dash-action-btn:hover { border-color: var(--orange); color: var(--orange); }
.dash-action-btn.pro { border-color: #A78BFA; color: #6D28D9; background: #F5F3FF; }
.dash-action-btn.pro:hover { background: #EDE9FE; }

/* ── Comment reply section ───────────────────────────── */
.dash-section { margin-bottom: 32px; }
.dash-section-sub { font-size: 0.9rem; color: var(--grey); margin-bottom: 16px; margin-top: -8px; }
.reply-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.reply-results { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.reply-item { background: var(--light-grey); border-radius: 12px; padding: 16px 18px; border-left: 3px solid #A78BFA; }
.reply-num { font-size: 0.75rem; font-weight: 700; color: #6D28D9; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.reply-text { font-size: 0.93rem; line-height: 1.6; color: var(--dark); margin-bottom: 10px; }

/* ── Report page ─────────────────────────────────────── */
.report-header { margin-bottom: 24px; }
.back-link { font-size: 0.88rem; color: var(--grey); text-decoration: none; display: inline-block; margin-bottom: 12px; }
.back-link:hover { color: var(--orange); }
.report-title { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 6px; }
.report-sub { color: var(--grey); font-size: 0.95rem; }
.report-kpis { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.report-kpi { background: var(--white); border-radius: 14px; padding: 20px 22px; flex: 1; min-width: 130px; box-shadow: var(--shadow); text-align: center; border-top: 3px solid var(--border); }
.report-kpi.highlight { border-top-color: var(--orange); }
.report-kpi-num { font-size: 1.8rem; font-weight: 800; color: var(--dark); line-height: 1.1; }
.report-kpi-label { font-size: 0.78rem; color: var(--grey); margin-top: 6px; }
.report-section { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; margin-bottom: 16px; }
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { font-size: 0.88rem; font-weight: 500; min-width: 110px; color: var(--dark); }
.bar-track { flex: 1; height: 12px; background: var(--light-grey); border-radius: 6px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--orange); border-radius: 6px; transition: width 0.6s ease; min-width: 4px; }
.bar-count { font-size: 0.85rem; font-weight: 700; color: var(--dark); min-width: 24px; text-align: right; }
.report-tip { background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 12px; padding: 16px 20px; font-size: 0.9rem; color: #92400E; margin-top: 16px; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section { background: var(--white); padding: 56px 20px; border-top: 1px solid var(--border); }
.faq-inner { max-width: 680px; margin: 0 auto; }
.faq-inner h2 { font-size: 1.6rem; font-weight: 800; text-align: center; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item summary { padding: 16px 20px; font-weight: 600; font-size: 0.97rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--orange); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); background: var(--light-grey); }
.faq-item p { padding: 16px 20px; font-size: 0.93rem; color: #444; line-height: 1.7; }

/* ── SMS card ─────────────────────────────────────────── */
.sms-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }

/* ── Dashboard redesign ───────────────────────────────── */

/* Overview bar */
.dash-overview {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 20px 16px;
  margin-bottom: 16px;
}
.dash-overview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.dash-greeting-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.dash-greeting-text {
  font-size: 1.15rem;
  font-weight: 700;
}
.dash-company-name {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 2px;
}
.dash-stats-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dash-stat-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--light-grey);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.82rem;
}
.dash-stat-icon { font-size: 0.9rem; }
.dash-stat-value { font-weight: 700; color: var(--dark); }
.dash-stat-label { color: var(--grey); }

/* Primary CTA */
.dash-primary-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--orange);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius);
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255,107,43,0.35);
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.dash-primary-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,107,43,0.4);
}
.dash-primary-cta:active { transform: translateY(0); }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.feature-card.locked {
  opacity: 0.7;
  background: var(--light-grey);
  box-shadow: none;
}
.feature-card.locked:hover { transform: none; box-shadow: none; }
.feature-card-lock {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.85rem;
  opacity: 0.5;
}
.feature-card-pro {
  border-top: 2px solid #A78BFA;
}
.feature-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 2px;
}
.feature-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.feature-card-desc {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.4;
  flex: 1;
}
.feature-card-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  transition: background 0.12s;
}
.feature-card-btn:hover { background: var(--orange-dark); }
.feature-card-btn.outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.feature-card-btn.outline:hover { background: var(--orange-light); }
.feature-card-btn.outline.pro {
  color: #6D28D9;
  border-color: #A78BFA;
}
.feature-card-btn.outline.pro:hover { background: #F5F3FF; }

/* Section header with count badge */
.dash-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.dash-section-header .dash-section-title { margin-bottom: 0; }
.post-count-badge {
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Post collapsed / show-all */
.post-item-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-hidden { display: none !important; }

.show-all-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.12s;
  text-align: center;
}
.show-all-btn:hover { border-color: var(--orange); color: var(--orange); }

/* Pro tools section */
.pro-tools {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  margin-bottom: 32px;
  border-top: 3px solid #A78BFA;
}
.pro-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.pro-tab-btn {
  padding: 10px 18px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.12s;
  white-space: nowrap;
}
.pro-tab-btn:hover { color: var(--dark); }
.pro-tab-btn.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.pro-tab-panel { animation: fadeIn 0.2s ease; }

/* Compact upgrade section */
.dash-upgrade-compact {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  text-align: center;
}
.dash-upgrade-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark);
}
.dash-upgrade-sub {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Post item scheduled variant */
.post-item-scheduled {
  border-left-color: #F59E0B;
}

/* Platform colors */
.post-platform-facebook { color: #1877F2; }
.post-platform-instagram { color: #E1306C; }
.post-platform-both { color: var(--dark); }

/* ── SMS success box ──────────────────────────────────── */
.sms-success {
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  color: #065F46;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.93rem;
  font-weight: 600;
  margin-top: 16px;
}

/* ── Post schedule button ─────────────────────────────── */
.post-schedule-btn {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.12s;
}
.post-schedule-btn:hover { background: var(--orange); color: var(--white); }

/* ── Schedule picker ──────────────────────────────────── */
.schedule-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--light-grey);
  border-radius: 12px;
}

/* ── Scheduled badge ──────────────────────────────────── */
.scheduled-badge {
  display: inline-block;
  background: #FFF3E0;
  color: #E65100;
  border: 1px solid #FFCC80;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Connect accounts ──────────────────────────────────── */
.connect-section { margin-bottom: 24px; }
.connect-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.connect-card { background: var(--white); border: 2px solid var(--border); border-radius: 14px; padding: 16px 20px; flex: 1; min-width: 200px; display: flex; gap: 14px; align-items: center; }
.connect-card.connected { border-color: var(--green); }
.connect-icon { font-size: 2rem; flex-shrink: 0; }
.connect-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.connect-status { font-size: 0.82rem; color: var(--grey); margin-bottom: 8px; }
.connect-status.connected { color: var(--green); font-weight: 600; }
.connect-btn { display: inline-block; background: var(--orange); color: white; font-weight: 600; font-size: 0.82rem; padding: 7px 14px; border-radius: 8px; text-decoration: none; transition: background 0.12s; }
.connect-btn:hover { background: var(--orange-dark); }
.connect-disconnect-btn { background: none; border: 1px solid var(--border); border-radius: 8px; padding: 5px 10px; font-size: 0.78rem; color: var(--grey); cursor: pointer; font-family: inherit; }
.connect-disconnect-btn:hover { border-color: #FECACA; color: #DC2626; background: #FEF2F2; }

/* ── Post to social buttons ───────────────────────────── */
.post-social-btn { padding: 7px 14px; border: none; border-radius: 8px; font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.12s; }
.post-social-btn.fb { background: #1877F2; color: white; }
.post-social-btn.fb:hover { background: #1565C0; }
.post-social-btn.ig { background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color: white; }
.post-social-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.posted-badge { font-size: 0.78rem; font-weight: 700; color: var(--green); background: #F0FDF4; border: 1px solid #BBF7D0; padding: 4px 10px; border-radius: 20px; }

/* ── Upgrade modal ───────────────────────────────────── */
.upgrade-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.upgrade-modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.upgrade-modal-icon { font-size: 3rem; margin-bottom: 12px; }
.upgrade-modal-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.upgrade-modal-sub { color: var(--grey); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
.upgrade-modal-plans { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; text-align: left; }
.upgrade-modal-plan { flex: 1; min-width: 180px; max-width: 220px; border: 2px solid var(--border); border-radius: 14px; padding: 20px 18px; }
.upgrade-modal-plan.featured { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-light); }
.upgrade-plan-name { font-size: 0.85rem; font-weight: 700; color: var(--grey); margin-bottom: 4px; }
.upgrade-plan-price { font-size: 1.7rem; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.upgrade-plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--grey); }
.upgrade-plan-features { list-style: none; font-size: 0.82rem; margin: 12px 0 16px; display: flex; flex-direction: column; gap: 5px; }
.upgrade-plan-features li { color: var(--dark); }
.upgrade-plan-btn { display: block; text-align: center; padding: 11px; background: var(--orange); color: white; border-radius: 10px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: background 0.12s; }
.upgrade-plan-btn:hover { background: var(--orange-dark); }
.upgrade-plan-btn.outline { background: var(--white); color: var(--orange); border: 2px solid var(--orange); }
.upgrade-plan-btn.outline:hover { background: var(--orange-light); }
.upgrade-modal-close { background: none; border: none; color: var(--grey); font-size: 0.88rem; cursor: pointer; margin-top: 4px; font-family: inherit; text-decoration: underline; }
.upgrade-modal-close:hover { color: var(--dark); }

/* ── Demo card ───────────────────────────────────────── */
.demo-card { border: 2px solid var(--orange); }
.demo-label { background: var(--orange); color: white; font-weight: 700; font-size: 0.9rem; padding: 10px 16px; border-radius: 10px; margin-bottom: 20px; text-align: center; }

/* ── Hero improvements ───────────────────────────────── */
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-light);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero-cta-secondary {
  display: block;
  margin-top: 12px;
  color: var(--grey);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.hero-cta-secondary:hover { color: var(--dark); }
.hero-trust {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 500;
}
.hero-trust span { display: flex; align-items: center; gap: 4px; }

/* ── Problem section ─────────────────────────────────── */
.problem-section { background: var(--white); padding: 60px 20px; border-bottom: 1px solid var(--border); }
.problem-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.problem-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 32px; letter-spacing: -0.02em; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 32px; }
.problem-item { background: var(--light-grey); border-radius: 14px; padding: 24px 18px; text-align: center; }
.problem-icon { font-size: 2rem; margin-bottom: 10px; }
.problem-item p { font-size: 0.9rem; color: var(--grey); line-height: 1.55; }
.problem-solution-bridge { background: var(--orange-light); border-left: 4px solid var(--orange); border-radius: 10px; padding: 16px 20px; font-size: 0.95rem; text-align: left; line-height: 1.6; }

/* ── Example posts section ───────────────────────────── */
.example-section { background: #FAFAFA; padding: 60px 20px; border-bottom: 1px solid var(--border); }
.example-inner { max-width: 680px; margin: 0 auto; }
.example-label { text-align: center; font-size: 0.85rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.example-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.example-card { background: var(--white); border-radius: 14px; padding: 20px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.example-meta { font-size: 0.78rem; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.example-input { font-size: 0.8rem; color: var(--grey); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.example-post { font-size: 0.88rem; line-height: 1.7; color: var(--dark); }

/* ── For-section ─────────────────────────────────────── */
.for-section { background: var(--white); padding: 60px 20px; border-bottom: 1px solid var(--border); }
.for-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.for-inner h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.02em; }
.for-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }
.for-item { background: var(--light-grey); border-radius: 10px; padding: 10px 18px; font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.for-sub { color: var(--grey); font-size: 0.9rem; line-height: 1.6; max-width: 520px; margin: 0 auto; }

/* ── Pricing improvements ────────────────────────────── */
.pricing-sub { text-align: center; color: var(--grey); font-size: 0.92rem; margin-top: -12px; margin-bottom: 32px; }
.price-guarantee { text-align: center; font-size: 0.78rem; color: var(--grey); margin-top: 10px; }

/* ── Final CTA section ───────────────────────────────── */
.final-cta-section { background: var(--orange); padding: 64px 20px; text-align: center; }
.final-cta-inner { max-width: 540px; margin: 0 auto; }
.final-cta-inner h2 { color: var(--white); font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.final-cta-inner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 4px; }
.final-cta-inner .hero-cta { background: var(--white); color: var(--orange); }
.final-cta-inner .hero-cta:hover { background: var(--light-grey); }
.final-cta-inner .hero-trust { color: rgba(255,255,255,0.8); }

/* ── Reviews section ─────────────────────────────────── */
.reviews-section { background: var(--white); padding: 48px 20px; border-bottom: 1px solid var(--border); text-align: center; }
.reviews-inner { max-width: 680px; margin: 0 auto; }
.reviews-label { font-size: 0.85rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.reviews-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.review-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  min-width: 220px;
}
.review-badge:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.review-badge-logo { width: 28px; height: 28px; flex-shrink: 0; }
.review-badge-stars { font-size: 1.1rem; color: #FFA500; letter-spacing: 2px; line-height: 1; }
.review-badge-text { font-size: 0.82rem; color: var(--grey); font-weight: 500; margin-top: 2px; }
.reviews-cta-note { font-size: 0.85rem; color: var(--grey); }

/* ── Quote / Tilbud ──────────────────────────────────── */
.quote-print-area {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  line-height: 1.6;
}
.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.quote-company-name { font-size: 1.2rem; font-weight: 800; color: var(--orange); }
.quote-company-sub { font-size: 0.85rem; color: var(--grey); margin-top: 2px; }
.quote-meta { text-align: right; }
.quote-title { font-size: 1.6rem; font-weight: 800; letter-spacing: 0.05em; color: var(--dark); }
.quote-date, .quote-number { font-size: 0.82rem; color: var(--grey); margin-top: 2px; }
.quote-to {
  background: var(--light-grey);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.quote-body {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  white-space: pre-wrap;
}
.quote-price-box { margin-bottom: 20px; }
.quote-price-table {
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.quote-price-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.quote-price-table td:last-child { text-align: right; font-weight: 600; }
.quote-total td {
  padding-top: 12px;
  font-size: 1.05rem;
  border-bottom: none;
  border-top: 2px solid var(--orange);
}
.quote-footer-text {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 32px;
  font-style: italic;
}
.quote-signature {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.88rem;
  color: var(--dark);
}
