/* Velzyx AI — Design System v2 */
/* Luxury editorial dark theme with gold accents */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --bg: #06080d;
  --bg-raised: #0c0f17;
  --bg-card: #10131c;
  --bg-card-hover: #151926;
  --border: rgba(201, 165, 92, 0.12);
  --border-light: rgba(255, 255, 255, 0.06);
  --gold: #c9a55c;
  --gold-light: #d4b76e;
  --gold-dim: rgba(201, 165, 92, 0.15);
  --gold-glow: rgba(201, 165, 92, 0.08);
  --text: #f0ede6;
  --text-secondary: #9a968e;
  --text-muted: #5c5952;
  --white: #ffffff;
  --green: #4ade80;
  --red: #f87171;
  --blue: #60a5fa;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-width: 1200px;
  --section-pad: 120px;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* — Noise texture overlay — */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

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

img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

/* ═══════════════════════════════════════ */
/* TYPOGRAPHY                             */
/* ═══════════════════════════════════════ */

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════ */
/* NAVIGATION                             */
/* ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(6, 8, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

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

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Industries dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary) !important;
}
.nav-dropdown-menu a:hover {
  background: var(--gold-dim);
  color: var(--gold) !important;
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border);
    padding: 24px 32px;
    gap: 16px;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    box-shadow: none;
    min-width: auto;
  }
}

/* ═══════════════════════════════════════ */
/* HERO                                   */
/* ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 var(--section-pad);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 { margin-bottom: 24px; }

.hero .subtitle { margin-bottom: 40px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════ */
/* BUTTONS                                */
/* ═══════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 165, 92, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════ */
/* SECTIONS                               */
/* ═══════════════════════════════════════ */

section { padding: var(--section-pad) 0; }

.section-header {
  margin-bottom: 64px;
}

.section-header.center { text-align: center; }
.section-header.center .subtitle { margin: 16px auto 0; }

/* Divider line */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
  max-width: 800px;
}

/* ═══════════════════════════════════════ */
/* CARDS                                  */
/* ═══════════════════════════════════════ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: rgba(201, 165, 92, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.2rem;
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-secondary); font-size: 0.95rem; }

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr !important; }
  .card { padding: 28px; }
}

/* ═══════════════════════════════════════ */
/* STATS                                  */
/* ═══════════════════════════════════════ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 60px 0;
}

.stat { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 600px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ═══════════════════════════════════════ */
/* DEMO CONVERSATION                      */
/* ═══════════════════════════════════════ */

.demo-chat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 500px;
}

.demo-chat-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
}

.demo-chat-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.demo-chat-status {
  font-size: 0.75rem;
  color: var(--green);
}

.demo-chat-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }

.demo-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: msgIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.demo-msg.bot {
  background: var(--bg-raised);
  border: 1px solid var(--border-light);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.demo-msg.user {
  background: var(--gold);
  color: var(--bg);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.demo-msg:nth-child(2) { animation-delay: 0.15s; }
.demo-msg:nth-child(3) { animation-delay: 0.3s; }
.demo-msg:nth-child(4) { animation-delay: 0.45s; }
.demo-msg:nth-child(5) { animation-delay: 0.6s; }
.demo-msg:nth-child(6) { animation-delay: 0.75s; }

@keyframes msgIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.demo-chat-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════ */
/* COMPARISON TABLE                       */
/* ═══════════════════════════════════════ */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.comparison-table td:first-child { color: var(--text-secondary); }
.comparison-table td:nth-child(2) { color: var(--text-muted); }
.comparison-table td:nth-child(3) { color: var(--gold); font-weight: 600; }

/* ═══════════════════════════════════════ */
/* TIMELINE / STEPS                       */
/* ═══════════════════════════════════════ */

.steps { display: flex; flex-direction: column; gap: 48px; position: relative; }

.steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 23px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--border), transparent);
}

.step { display: flex; gap: 32px; position: relative; }

.step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.step-content h3 { margin-bottom: 8px; }
.step-content p { color: var(--text-secondary); font-size: 0.95rem; }

@media (max-width: 600px) {
  .steps::before { left: 19px; }
  .step { gap: 20px; }
  .step-num { width: 40px; height: 40px; min-width: 40px; font-size: 0.8rem; }
}

/* ═══════════════════════════════════════ */
/* INDUSTRY PAGE SPECIFIC                 */
/* ═══════════════════════════════════════ */

.industry-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.industry-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.problem-card h4 { margin-bottom: 8px; color: var(--text); }
.problem-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ═══════════════════════════════════════ */
/* FAQ                                    */
/* ═══════════════════════════════════════ */

.faq-list { max-width: 700px; margin: 0 auto; }

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

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 300px; padding-top: 16px; }

/* ═══════════════════════════════════════ */
/* CTA SECTION                            */
/* ═══════════════════════════════════════ */

.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section .subtitle { margin: 0 auto 40px; }

/* ═══════════════════════════════════════ */
/* FOOTER                                 */
/* ═══════════════════════════════════════ */

footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 12px; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.88rem;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════ */
/* ANIMATIONS                             */
/* ═══════════════════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════ */
/* CONTACT FORM                           */
/* ═══════════════════════════════════════ */

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

/* ═══════════════════════════════════════ */
/* UTILITY                                */
/* ═══════════════════════════════════════ */

.text-gold { color: var(--gold); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  :root { --section-pad: 80px; }
  h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
}

/* ═══════════════════════════════════════ */
/* INDUSTRY INDEX CARDS                   */
/* ═══════════════════════════════════════ */

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  color: var(--text);
}

.industry-card:hover {
  border-color: rgba(201, 165, 92, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  color: var(--text);
}

.industry-card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.industry-card h3 { margin-bottom: 12px; }
.industry-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; }

.industry-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.industry-card-tags span {
  background: var(--gold-dim);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
}

.industry-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}

/* ═══════════════════════════════════════ */
/* TWO-REALITY / COMPARISON               */
/* ═══════════════════════════════════════ */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-col { border-radius: var(--radius-lg); padding: 40px; }
.comparison-col.without {
  background: var(--bg-card);
  border: 1px solid rgba(248, 113, 113, 0.15);
}
.comparison-col.with {
  background: var(--bg-card);
  border: 1px solid rgba(201, 165, 92, 0.2);
}

.comparison-col h4 {
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 700;
}
.comparison-col.without h4 { color: var(--red); }
.comparison-col.with h4 { color: var(--gold); }

.comparison-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.comparison-item:last-child { border-bottom: none; }

.comparison-time {
  min-width: 60px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

/* Solution features list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 2px;
}

.feature-item p { color: var(--text-secondary); font-size: 0.92rem; }
.feature-item strong { color: var(--text); }
