/* ===== AUDIOMATIC — style.css ===== */

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

:root {
  --bg: #E9ECF0;
  --surface: #ffffff;
  --surface2: #f4f5f8;
  --text: #111318;
  --text-muted: #6b7280;
  --accent-start: #7B3FE4;
  --accent-end: #E8365D;
  --gradient: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  --radius: 20px;
  --shadow: 0 4px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 60px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem); height: 68px;
  background: rgba(233,236,240,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo { height: 38px; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
  text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-demo {
  background: var(--gradient); color: #fff; border: none;
  padding: 0.55rem 1.4rem; border-radius: 100px;
  font-family: inherit; font-size: 0.875rem; font-weight: 700;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-demo:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 1.5rem 2rem; z-index: 99; flex-direction: column; gap: 1.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 600; color: var(--text); text-decoration: none; font-size: 1rem; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gradient); color: #fff; padding: 0.85rem 2rem; border-radius: 100px;
  font-family: inherit; font-size: 0.95rem; font-weight: 700; text-decoration: none; display: inline-block;
  transition: opacity 0.2s, transform 0.15s; border: none; cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--text); padding: 0.85rem 2rem; border-radius: 100px;
  font-family: inherit; font-size: 0.95rem; font-weight: 600; text-decoration: none;
  border: 2px solid rgba(0,0,0,0.12); display: inline-block;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: rgba(0,0,0,0.3); transform: translateY(-2px); }

/* ── SECTION HELPERS ── */
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-start); margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.025em; margin-bottom: 2rem;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   HERO — Split layout
══════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #0d0818;
}

.hero-slides { position: relative; width: 100%; }

.hero-slide {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 88vh;
  opacity: 0;
  transition: opacity 0.9s ease;
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-slide--active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

/* Photo */
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Per-slide object-position — different crops for different ratios */
#heroSlide0 .hero-img { object-position: center 20%; }   /* vetinbarn 1.38:1 — portret, twarz wyżej */
#heroSlide1 .hero-img { object-position: 30% center; }   /* inzynier1 2.20:1 — szeroki, postać z lewej */
#heroSlide2 .hero-img { object-position: 25% center; }   /* salesforce 1.67:1 — postać z lewej */

/* Right panel */
.hero-panel {
  background: linear-gradient(105deg, rgba(13,8,24,0.82) 0%, rgba(13,8,24,0.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 2.5rem 2.5rem; gap: 0.6rem;
}
.hero-ctx-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(123,63,228,0.25); border: 1px solid rgba(123,63,228,0.5);
  color: #c4a6ff; font-size: 0.82rem; font-weight: 700;
  padding: 0.35rem 0.9rem; border-radius: 100px; width: fit-content; letter-spacing: 0.04em;
}
.hero-ctx-tagline {
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6);
  line-height: 1.45; max-width: 280px; font-style: italic;
}

/* Static copy overlay */
.hero-copy {
  position: absolute; top: 0; right: 0;
  width: 42%; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  z-index: 10;
}
.hero-headline {
  font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.035em; color: #fff; margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: rgba(255,255,255,0.7);
  line-height: 1.72; margin-bottom: 2.25rem; max-width: 360px;
}
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.btn-secondary--light {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.22) !important;
  backdrop-filter: blur(6px);
}
.btn-secondary--light:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.4) !important; color: #fff !important;
}

/* Dots */
.hero-indicators {
  position: absolute; bottom: 2rem; right: clamp(2rem, 4vw, 3.5rem);
  display: flex; gap: 8px; align-items: center; z-index: 11;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.hero-dot--active { background: #fff; width: 24px; border-radius: 4px; }

/* Hero mobile */
@media (max-width: 860px) {
  .hero-slide { grid-template-columns: 1fr; min-height: auto; }
  .hero-img { height: 62vw; min-height: 240px; max-height: 420px; }
  #heroSlide0 .hero-img { object-position: center 15%; }
  #heroSlide1 .hero-img { object-position: 30% 20%; }
  #heroSlide2 .hero-img { object-position: 28% 20%; }
  .hero-panel { display: flex; padding: 0.875rem 1.25rem 1rem; }
  .hero-copy {
    position: relative; width: 100%; height: auto;
    background: #0d0818; padding: 1.5rem 1.25rem 1rem;
    justify-content: flex-start;
  }
  .hero-headline { font-size: 2.2rem; margin-bottom: 0.875rem; }
  .hero-sub { max-width: 100%; margin-bottom: 1.25rem; }
  .hero-ctas { flex-direction: column; gap: 0.65rem; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; text-align: center; padding: 1rem; font-size: 1rem; }
  .hero-indicators { position: relative; bottom: auto; right: auto; padding: 0.75rem 1.25rem 1.5rem; background: #0d0818; }
}

/* ══════════════════════════════════════
   JAK TO DZIAŁA
══════════════════════════════════════ */
#jak-to-dziala {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1100px; margin: 0 auto;
}
.how-grid {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 3rem; align-items: start; margin-bottom: 2.5rem;
}
.phone-wrap { display: flex; justify-content: center; }
.phone-container {
  position: relative; width: 260px; height: 520px; border-radius: 36px;
  box-shadow: 0 0 0 10px #1a1a1a, 0 0 0 12px #3a3a3a, 0 28px 80px rgba(0,0,0,0.35);
  overflow: hidden; background: #000;
}
.phone-screen { position: absolute; inset: 0; overflow: hidden; background: #000; }
.phone-ui {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; transition: opacity 0.45s ease;
}
.phone-ui.hidden { opacity: 0; pointer-events: none; }
.phone-ui.visible { opacity: 1; }
.phone-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 20;
}
.phone-dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s; cursor: pointer; border: none; padding: 0;
}
.phone-dot.active { background: #fff; transform: scale(1.3); }

.steps-menu { display: flex; flex-direction: column; gap: 0.75rem; }
.step-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem; border-radius: var(--radius);
  cursor: pointer; transition: background 0.2s, box-shadow 0.2s; border: 2px solid transparent;
}
.step-item:hover { background: rgba(255,255,255,0.7); }
.step-item.active { background: var(--surface); box-shadow: var(--shadow); border-color: rgba(123,63,228,0.15); }
.step-num {
  width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--text-muted); transition: background 0.2s, color 0.2s;
}
.step-item.active .step-num { background: var(--gradient); color: #fff; }
.step-content h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.step-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.how-desc { max-width: 820px; font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 3rem; }

.products-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--surface); }
.products-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.products-table thead tr { background: var(--gradient); color: #fff; }
.products-table th { padding: 1rem 1.5rem; text-align: left; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.products-table td { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); vertical-align: middle; }
.products-table tbody tr:last-child td { border-bottom: none; }
.products-table tbody tr:hover { background: var(--surface2); }
.product-name { font-weight: 700; color: var(--text); white-space: nowrap; }
.product-desc { color: var(--text-muted); line-height: 1.55; }
.product-badge { display: inline-block; padding: 0.2rem 0.75rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; background: rgba(123,63,228,0.1); color: var(--accent-start); white-space: nowrap; }

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .phone-wrap { order: -1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .btn-demo.nav-demo-btn { display: none; }
  .nav-hamburger { display: flex; }
}

/* ══════════════════════════════════════
   DLA KOGO — Zebra
══════════════════════════════════════ */
.dla-kogo-section { background: var(--bg); padding-bottom: clamp(3rem, 6vw, 5rem); }
.dla-kogo-header {
  max-width: 1100px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 0;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.dkg-block {
  display: flex; align-items: stretch;
  max-width: 1100px; margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0 clamp(1.5rem, 5vw, 4rem); gap: clamp(2rem, 4vw, 4rem);
}
.dkg-block--reverse { flex-direction: row-reverse; }
.dkg-img-wrap { flex: 0 0 50%; max-width: 50%; overflow: hidden; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.dkg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; min-height: 300px; transition: transform 0.5s ease; }
.dkg-img-wrap:hover .dkg-img { transform: scale(1.03); }
.dkg-text { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(1rem, 3vw, 2rem) 0; }
.dkg-tag { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-start); background: rgba(123,63,228,0.08); padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1.1rem; width: fit-content; }
.dkg-title { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 1rem; color: var(--text); }
.dkg-desc { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--text-muted); line-height: 1.75; max-width: 440px; }

.dkg-privacy {
  display: flex; align-items: flex-start; gap: 1.5rem;
  max-width: 1100px; margin: clamp(2rem, 5vw, 4rem) auto 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(123,63,228,0.07), rgba(232,54,93,0.05));
  border: 1px solid rgba(123,63,228,0.15); border-radius: 20px;
}
.dkg-privacy-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.dkg-privacy-title { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.dkg-privacy-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 780px) {
  .dkg-block, .dkg-block--reverse { flex-direction: column-reverse; gap: 1.5rem; }
  .dkg-img-wrap { flex: none; max-width: 100%; border-radius: 12px; }
  .dkg-img { min-height: 56vw; max-height: 320px; }
  .dkg-text { padding: 0; }
  .dkg-desc { max-width: 100%; }
  .dkg-privacy { flex-direction: column; gap: 1rem; padding: 1.5rem; margin: 1.5rem 1.25rem 0; }
}

/* ══════════════════════════════════════
   FAQ — Dark
══════════════════════════════════════ */
.faq-dark-section { background: #111318; }
.faq-dark-inner { max-width: 800px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); }
.faq-dark-section .section-label { color: #a78bfa; }
.faq-dark-section .section-title { color: #fff; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.09); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  font-family: inherit; font-size: 0.975rem; font-weight: 600;
  color: rgba(255,255,255,0.88); padding: 1.1rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s;
}
.faq-q:hover { color: #a78bfa; }
.faq-icon {
  width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform 0.3s, border-color 0.2s; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: #a78bfa; color: #a78bfa; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { font-size: 0.875rem; color: rgba(255,255,255,0.48); line-height: 1.75; padding-bottom: 1.1rem; }

/* ══════════════════════════════════════
   KONTAKT
══════════════════════════════════════ */
#kontakt { padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); background: var(--bg); }
.contact-inner { max-width: 1100px; margin: 0 auto; }

.callout-box {
  background: #111318; border-radius: var(--radius); padding: 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem;
}
.callout-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #a78bfa; margin-bottom: 0.3rem; display: block; }
.callout-strong { display: block; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
.callout-p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.callout-link { color: #a78bfa; font-weight: 700; text-decoration: none; }
.callout-link:hover { color: #c4a6ff; }
.callout-feats { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.callout-feat { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 0.4rem 0.875rem; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.78); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-badges { display: flex; flex-direction: column; gap: 1rem; }
.contact-badge { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-badge-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; background: rgba(123,63,228,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.badge-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 2px; display: block; }
.badge-value { font-weight: 700; font-size: 0.9rem; color: var(--text); text-decoration: none; }
.contact-topic-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.topic-pill { padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; border: 2px solid rgba(0,0,0,0.1); color: var(--text-muted); cursor: pointer; transition: all 0.2s; background: transparent; }
.topic-pill.active, .topic-pill:hover { background: var(--gradient); color: #fff; border-color: transparent; }
.contact-card { background: var(--surface); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.contact-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-card > p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form-row { display: flex; gap: 0.75rem; }
.contact-form-row .contact-input { flex: 1; }
.contact-input { width: 100%; padding: 0.9rem 1rem; border-radius: 12px; border: 2px solid rgba(0,0,0,0.08); background: var(--surface2); font-family: inherit; font-size: 0.95rem; color: var(--text); outline: none; transition: border-color 0.2s; resize: vertical; -webkit-appearance: none; appearance: none; }
.contact-input:focus { border-color: var(--accent-start); background: #fff; }
.contact-input::placeholder { color: var(--text-muted); }
.contact-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.contact-submit { background: var(--gradient); color: #fff; border: none; padding: 1rem 2rem; border-radius: 100px; font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer; width: 100%; text-align: center; text-decoration: none; display: block; transition: opacity 0.2s; }
.contact-submit:active { opacity: 0.85; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .callout-box { padding: 1.5rem; }
}
@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: #111318; color: rgba(255,255,255,0.45); padding: 2.5rem clamp(1.5rem, 5vw, 4rem); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { height: 30px; filter: brightness(0) invert(1) opacity(0.7); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-vcf { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(123,63,228,0.2); border: 1px solid rgba(123,63,228,0.4); color: #c4a6ff; padding: 0.45rem 1rem; border-radius: 100px; font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.footer-seo { font-size: 0.75rem; line-height: 1.8; }
.footer-bottom { font-size: 0.75rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

@media (max-width: 640px) {
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

/* ══════════════════════════════════════
   DARMOWE DEMO
══════════════════════════════════════ */
#demo { padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); background: var(--surface); }
#demo .container { max-width: 860px; margin: 0 auto; }
.demo-box {
  background: linear-gradient(135deg, #f0ebff, #fff0f5);
  border: 2px solid rgba(123,63,228,0.18); border-radius: 24px; padding: 2.5rem;
text-align: center;
}
.demo-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gradient); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.35rem 1rem; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.demo-title { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 0.75rem; }
.demo-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.75rem; }
.demo-specs { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; }
.demo-spec { display: flex; align-items: center; gap: 0.875rem; background: rgba(255,255,255,0.7); border-radius: 12px; padding: 0.875rem 1rem; }
.demo-spec-icon { font-size: 1.25rem; flex-shrink: 0; }
.demo-spec-text strong { display: block; font-weight: 700; font-size: 0.95rem; }
.demo-spec-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.4; }
.demo-instruction { background: rgba(123,63,228,0.06); border-radius: 14px; padding: 1.25rem 1.5rem; margin-bottom: 1.75rem; border: 1px solid rgba(123,63,228,0.1); }
.demo-instruction-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-start); margin-bottom: 0.875rem; text-align: left; }
.demo-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.demo-step { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.demo-step-num { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: var(--gradient); color: #fff; font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.demo-email-link { color: var(--accent-start); font-weight: 700; word-break: break-all; }
.demo-cta-row { display: flex; flex-wrap: wrap; gap: 0.875rem; justify-content: center; }
.btn-vcf { display: inline-flex; align-items: center; gap: 0.5rem; border: 2px solid rgba(123,63,228,0.3); color: var(--accent-start); background: transparent; padding: 0.875rem 1.5rem; border-radius: 100px; font-family: inherit; font-size: 0.95rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: border-color 0.2s; }
.btn-vcf:hover { border-color: var(--accent-start); }

@media (min-width: 600px) {
  .demo-specs { flex-direction: row; }
  .demo-spec { flex: 1; flex-direction: column; text-align: center; gap: 0.5rem; }
}
@media (max-width: 599px) {
  .demo-box { padding: 1.5rem; }
  .demo-cta-row { flex-direction: column; }
  .demo-cta-row .btn-primary, .demo-cta-row .btn-vcf { width: 100%; text-align: center; justify-content: center; }
}
