  :root {
    /* Ego-Team inspired palette: warm beige, wood tones, deep brown */
    --bg: #faf6ef;
    --bg-soft: #f3ece0;
    --bg-warm: #ede2d0;
    --panel: #ffffff;
    --panel-warm: #fdfaf3;
    --ink: #2b2419;
    --ink-soft: #5e5345;
    --ink-faint: #9d9081;
    --accent: #b8946a;
    --accent-deep: #8e6b48;
    --accent-soft: #e8d5b8;
    --accent-pale: #f5ebd9;
    --border: #e8ddc9;
    --border-soft: #f0e8d8;
    --success: #67805a;
    --success-soft: #e0eadb;
    --warn: #c68645;
    --shadow-sm: 0 1px 3px rgba(43,36,25,0.06);
    --shadow-md: 0 4px 16px rgba(43,36,25,0.08);
    --shadow-lg: 0 24px 60px rgba(43,36,25,0.12);
    --shadow-xl: 0 40px 80px rgba(43,36,25,0.18);
  }

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

  html, body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(circle at 15% 25%, rgba(184,148,106,0.08) 0%, transparent 45%),
      radial-gradient(circle at 85% 75%, rgba(184,148,106,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
  }

  /* ==================== MOCK SITE (background) ==================== */
  .site {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .site-header {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-soft);
  }
  .site-logo {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .site-logo span { color: var(--accent-deep); font-style: italic; }
  .site-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 14px;
    color: var(--ink-soft);
  }
  .site-nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .site-nav a:hover { color: var(--accent-deep); }
  .site-nav-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-soft);
    cursor: pointer;
    transition: background 0.2s;
  }
  .site-nav-icon:hover { background: var(--accent-soft); }

  .site-categories {
    display: flex;
    gap: 36px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-soft);
    color: var(--accent-deep);
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 500;
  }
  .site-categories span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .site-hero {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .site-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--ink);
  }
  .site-hero h1 em {
    font-style: italic;
    color: var(--accent-deep);
  }
  .site-hero p {
    font-size: 16px;
    color: var(--ink-soft);
    margin-bottom: 28px;
    max-width: 440px;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--bg);
    padding: 16px 28px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: var(--shadow-md);
  }
  .hero-cta:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  .hero-cta svg { transition: transform 0.25s; }
  .hero-cta:hover svg { transform: translateX(3px); }

  .site-hero-visual {
    aspect-ratio: 5/4;
    background:
      linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-pale) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .site-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 40%, rgba(255,255,255,0.4) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(142,107,72,0.15) 0%, transparent 50%);
  }
  .hero-products {
    position: absolute;
    inset: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero-product {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }

  .site-trust {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-soft);
    margin-top: 60px;
  }
  .site-trust div {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--ink-faint);
    font-style: italic;
  }

  /* Demo controls toolbar */
  .demo-toolbar {
    position: fixed;
    top: 16px;
    right: 16px;
    background: var(--ink);
    color: var(--bg);
    padding: 8px;
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .demo-toolbar-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-soft);
    padding: 0 12px 0 16px;
  }
  .demo-toolbar button {
    background: transparent;
    border: none;
    color: var(--bg);
    padding: 8px 14px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }
  .demo-toolbar button:hover { background: rgba(255,255,255,0.1); }
  .demo-toolbar button.active {
    background: var(--accent);
    color: var(--ink);
    font-weight: 600;
  }

  /* Floating launcher */
  .launcher {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
  }
  .launcher-bubble {
    background: var(--panel);
    padding: 14px 18px;
    border-radius: 16px 16px 4px 16px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    color: var(--ink);
    max-width: 260px;
    line-height: 1.4;
    border: 1px solid var(--border);
    animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .launcher-bubble strong { color: var(--accent-deep); }
  .launcher-bubble-close {
    position: absolute;
    top: 6px;
    right: 6px;
    background: transparent;
    border: none;
    color: var(--ink-faint);
    cursor: pointer;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  .launcher-bubble-close:hover { background: var(--bg-soft); color: var(--ink); }
  .launcher-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--bg);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    position: relative;
  }
  .launcher-btn:hover {
    transform: scale(1.06);
    background: var(--accent-deep);
  }
  .launcher-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--accent);
    z-index: -1;
    animation: pulse-ring 2.5s ease-out infinite;
  }
  @keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
  }
  @keyframes pop {
    0% { transform: scale(0.85) translateY(8px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
  }

  /* ==================== CHATBOT FULL-SCREEN ==================== */
  .chatbot {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 200;
    display: none;
    flex-direction: column;
    animation: chatbotIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .chatbot.open { display: flex; }

  @keyframes chatbotIn {
    0% { opacity: 0; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
  }

  /* Decorative background */
  .chatbot::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 15% 10%, var(--accent-pale) 0%, transparent 40%),
      radial-gradient(ellipse at 85% 90%, var(--bg-soft) 0%, transparent 50%);
    pointer-events: none;
  }
  .chatbot::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(43,36,25,0.04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.6;
  }

  /* Chatbot header */
  .cb-header {
    position: relative;
    z-index: 2;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-soft);
    background: rgba(250, 246, 239, 0.85);
    backdrop-filter: blur(20px);
  }
  .cb-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .cb-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--bg);
    box-shadow: var(--shadow-md);
    position: relative;
  }
  .cb-avatar::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    background: var(--success);
    border: 2.5px solid var(--bg);
    border-radius: 50%;
  }
  .cb-brand-text {
    line-height: 1.2;
  }
  .cb-brand-name {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
  }
  .cb-brand-status {
    font-size: 11px;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
  }
  .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulseDot 2s ease-in-out infinite;
  }
  @keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .cb-actions {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .cb-action-btn {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 9px 16px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s;
  }
  .cb-action-btn:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    transform: translateY(-1px);
  }
  .cb-action-btn.primary {
    background: var(--accent-deep);
    color: var(--bg);
    border-color: var(--accent-deep);
  }
  .cb-action-btn.primary:hover {
    background: var(--ink);
    border-color: var(--ink);
  }
  .cb-close {
    background: transparent;
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-left: 8px;
  }
  .cb-close:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }

  /* Progress bar */
  .cb-progress {
    height: 3px;
    background: var(--border-soft);
    position: relative;
    z-index: 2;
  }
  .cb-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Conversation area */
  .cb-body {
    flex: 1;
    overflow-y: auto;
    position: relative;
    z-index: 2;
    padding: 32px 24px 24px;
    scroll-behavior: smooth;
  }
  .cb-body::-webkit-scrollbar { width: 8px; }
  .cb-body::-webkit-scrollbar-track { background: transparent; }
  .cb-body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
  }

  .cb-conversation {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 60px;
  }

  /* Welcome state */
  .cb-welcome {
    text-align: center;
    padding: 60px 20px 40px;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .cb-welcome-emoji {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    animation: wave 1.5s ease-in-out;
    transform-origin: 70% 70%;
  }
  @keyframes wave {
    0%, 60%, 100% { transform: rotate(0deg); }
    10%, 30%, 50% { transform: rotate(14deg); }
    20%, 40% { transform: rotate(-8deg); }
  }
  .cb-welcome h1 {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 14px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .cb-welcome h1 em {
    font-style: italic;
    color: var(--accent-deep);
  }
  .cb-welcome p {
    font-size: 15px;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 0 auto 32px;
  }

  /* Industry chips (first question) */
  .cb-industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
  }
  @media (max-width: 720px) {
    .cb-industries { grid-template-columns: 1fr 1fr; }
  }
  .cb-industry {
    background: var(--panel);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 20px 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
  }
  .cb-industry::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, var(--accent-pale) 100%);
    opacity: 0;
    transition: opacity 0.25s;
  }
  .cb-industry:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .cb-industry:hover::before { opacity: 0.5; }
  .cb-industry > * { position: relative; z-index: 1; }
  .cb-industry-icon {
    font-size: 28px;
    margin-bottom: 4px;
  }
  .cb-industry-name {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.2;
  }
  .cb-industry-tag {
    font-size: 11px;
    color: var(--ink-faint);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Quick start row (alternative for non-industry start) */
  .cb-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  }
  .cb-quick-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--ink-soft);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .cb-quick-btn:hover {
    background: var(--panel);
    color: var(--ink);
    border-color: var(--accent);
  }

  /* Messages */
  .msg {
    max-width: 78%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.55;
    animation: msgIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    word-wrap: break-word;
  }
  @keyframes msgIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .msg.bot {
    background: var(--panel);
    color: var(--ink);
    border: 1px solid var(--border);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    box-shadow: var(--shadow-sm);
  }
  .msg.user {
    background: var(--ink);
    color: var(--bg);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
  }
  .msg.bot strong { color: var(--accent-deep); font-weight: 600; }
  .msg.bot em { font-style: italic; color: var(--ink-soft); }
  .msg.thinking {
    background: var(--panel);
    border: 1px solid var(--border);
    align-self: flex-start;
    padding: 14px 18px;
    border-radius: 20px;
    border-bottom-left-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .thinking-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink-faint);
    animation: thinkingDot 1.4s ease-in-out infinite;
  }
  .thinking-dot:nth-child(2) { animation-delay: 0.2s; }
  .thinking-dot:nth-child(3) { animation-delay: 0.4s; }
  @keyframes thinkingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
  }

  /* Option pills */
  .options-wrap {
    align-self: flex-start;
    max-width: 100%;
    animation: msgIn 0.35s ease-out 0.1s both;
  }
  .options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0;
  }
  .options-hint {
    font-size: 12px;
    color: var(--ink-faint);
    margin-top: 10px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 4px;
  }
  .options-hint svg {
    width: 12px;
    height: 12px;
    opacity: 0.7;
    flex-shrink: 0;
  }
  .options-hint strong {
    color: var(--accent-deep);
    font-style: normal;
    font-weight: 600;
  }
  .option {
    background: var(--panel);
    border: 1.5px solid var(--accent-soft);
    color: var(--ink);
    padding: 10px 18px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .option:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }

  /* Product recommendation cards */
  .products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-self: stretch;
    max-width: 100%;
    margin-top: 4px;
    animation: msgIn 0.4s ease-out;
  }
  .product {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 14px;
    align-items: center;
    transition: all 0.2s;
  }
  .product:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
  }
  .product-img {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-pale) 0%, var(--bg-soft) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  .product-info { min-width: 0; }
  .product-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 2px;
    line-height: 1.3;
  }
  .product-desc {
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .product-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
  }
  .product-tag {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 100px;
    background: var(--bg-soft);
    color: var(--ink-soft);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .product-tag.eko { background: var(--success-soft); color: var(--success); }
  .product-tag.popular { background: var(--accent-pale); color: var(--accent-deep); }
  .product-action {
    background: var(--ink);
    color: var(--bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .product-action:hover { background: var(--accent-deep); transform: scale(1.05); }

  /* Input area */
  .cb-footer {
    position: relative;
    z-index: 2;
    padding: 16px 24px 24px;
    background: linear-gradient(180deg, transparent 0%, var(--bg) 30%);
  }
  .cb-input-wrap {
    max-width: 720px;
    margin: 0 auto;
  }
  .cb-input {
    background: var(--panel);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 6px 6px 6px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border 0.2s;
    box-shadow: var(--shadow-sm);
  }
  .cb-input:focus-within {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
  }
  .cb-input input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    padding: 10px 0;
    background: transparent;
  }
  .cb-input input::placeholder { color: var(--ink-faint); }
  .cb-send {
    background: var(--ink);
    color: var(--bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
  }
  .cb-send:hover { background: var(--accent-deep); }
  .cb-send:disabled { background: var(--ink-faint); cursor: not-allowed; }

  .cb-disclosure {
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-faint);
    margin-top: 10px;
    letter-spacing: 0.05em;
  }
  .cb-disclosure a { color: var(--accent-deep); text-decoration: none; }
  .cb-disclosure a:hover { text-decoration: underline; }

  /* Hitri klic modal */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(43,36,25,0.5);
    backdrop-filter: blur(8px);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease-out;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .modal {
    background: var(--bg);
    border-radius: 24px;
    padding: 32px;
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .modal h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .modal p {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }
  .modal-phone {
    background: var(--panel);
    border: 1.5px solid var(--accent-soft);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
  }
  .modal-phone-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-deep);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .modal-phone-info {
    flex: 1;
  }
  .modal-phone-info .num {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
  }
  .modal-phone-info .sub {
    font-size: 12px;
    color: var(--ink-soft);
  }
  .modal-cta {
    background: var(--accent-deep);
    color: var(--bg);
    border: none;
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
  }
  .modal-cta:hover { background: var(--ink); }
  .modal-divider {
    text-align: center;
    color: var(--ink-faint);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 18px 0 14px;
    font-family: 'JetBrains Mono', monospace;
  }
  .modal-close {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--ink-soft);
    padding: 10px 18px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
    margin-top: 12px;
  }
  .modal-close:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

  /* Lead form */
  .lead-form {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 20px;
    margin: 0;
    animation: msgIn 0.4s ease-out;
    box-shadow: var(--shadow-sm);
  }
  .lead-form h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--ink);
    font-weight: 600;
  }
  .lead-form > p {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .form-grid input, .form-grid textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: var(--bg);
    transition: all 0.2s;
    resize: none;
  }
  .form-grid input:focus, .form-grid textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--panel);
    box-shadow: 0 0 0 3px var(--accent-pale);
  }
  .form-grid .full { grid-column: span 2; }
  .form-grid textarea { min-height: 70px; font-family: inherit; }
  .form-submit {
    grid-column: span 2;
    background: var(--accent-deep);
    color: var(--bg);
    border: none;
    padding: 14px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
  }
  .form-submit:hover { background: var(--ink); }

  /* Summary card */
  .summary {
    background: var(--accent-pale);
    border: 1px solid var(--accent-soft);
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 8px;
    animation: msgIn 0.4s ease-out;
  }
  .summary-title {
    font-family: 'Fraunces', serif;
    font-size: 13px;
    color: var(--accent-deep);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .summary-row {
    display: flex;
    padding: 4px 0;
    font-size: 13px;
  }
  .summary-row strong {
    color: var(--ink-soft);
    min-width: 120px;
    font-weight: 500;
  }
  .summary-row span { color: var(--ink); font-weight: 500; }

  /* Mobile */
  @media (max-width: 720px) {
    .cb-header { padding: 14px 16px; }
    .cb-action-btn span { display: none; }
    .cb-welcome { padding: 30px 16px 20px; }
    .cb-welcome h1 { font-size: 28px; }
    .site-hero { grid-template-columns: 1fr; padding: 40px 0; }
    .site-hero h1 { font-size: 36px; }
    .demo-toolbar { right: 8px; left: 8px; justify-content: center; flex-wrap: wrap; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .full { grid-column: span 1; }
    .form-submit { grid-column: span 1; }
  }
