:root {
    --bg: #0d0d12;
    --surface: #131318;
    --surface2: #1a1a22;
    --border: rgba(255,255,255,0.05);
    --pink: #f06aff;
    --blue: #7ab3ff;
    --yellow: #ffe066;
    --purple: #b08aff;
    --grad: linear-gradient(135deg, #f06aff, #9b7fff, #7ab3ff, #ffe066);
    --grad-short: linear-gradient(135deg, #f06aff, #7ab3ff);
    --grad-warm: linear-gradient(135deg, #f06aff, #ffe066);
    --green: #52d98a;
    --text: #f5f5f5;
    --text-muted: #6b6b6b;
    --text-mid: #aaa8c0;
  }

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

  html { scroll-behavior: smooth; scroll-padding-top: 96px; }

  body {
    padding-top: 80px;
    background: #16151d;
    background-image: radial-gradient(ellipse at 20% 20%, rgba(196,181,253,0.06) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(147,197,253,0.05) 0%, transparent 50%);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: initial;

    padding: 10px 40px;
    min-height: 72px;
    height: auto;
    background: rgba(12,12,20,0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 34px; height: 34px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: none;
  }

  .nav-logo-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.3px;
  }

  .nav-links {
    justify-self: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    list-style: none;
    justify-content: center;
    max-width: 100%;
  }

  .nav-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    justify-self: end;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn:hover { transform: translateY(-1px); }

  .btn-primary {
    background: var(--grad-short);
    color: white;
    box-shadow: none;
  }
  .btn-primary:hover { box-shadow: none; }

  .btn-ghost {
    background: rgba(255,255,255,0.025);
    color: var(--text-mid);
    border: 1px solid var(--border);
  }

  .btn-outline {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
  }


  /* ===== HERO ===== */
  .hero {
    padding: 100px 40px 28px;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196,181,253,0.08);
    border: 1px solid rgba(196,181,253,0.15);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 20px;
  }

  .badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 8px var(--purple);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,100% { box-shadow: 0 0 6px var(--purple); }
    50% { box-shadow: 0 0 14px var(--purple); }
  }

  .hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 14px;
    text-align: center;
  }

  .accent-purple {
    background: var(--grad-short);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .accent-pink {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-desc {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 500px;
    font-weight: 400;
  }

  .hero-cta-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
  }

  /* ===== HERO CHAT CONTAINER ===== */
  .hero-chat-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .bot-window {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 -8px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    /* Fill remaining screen height so window bleeds past fold */
    min-height: 500px;
    max-height: 640px;
  }

  .bot-messages-area {
    padding: 22px 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-height: 180px;
    max-height: 360px;
    overflow-y: auto;
    scroll-behavior: smooth;
  }

  .bot-messages-area::-webkit-scrollbar { width: 3px; }
  .bot-messages-area::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

  .bot-msg-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: popIn 0.2s ease both;
  }

  .user-row { flex-direction: row-reverse; }

  .bot-avatar-sm {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
  }

  .bot-bubble {
    background: linear-gradient(135deg, rgba(240,106,255,0.1), rgba(122,179,255,0.08));
    border: 1px solid rgba(240,106,255,0.15);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    padding: 11px 15px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
    max-width: 72%;
  }

  .user-bubble {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 14px;
    border-bottom-right-radius: 4px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
    max-width: 72%;
  }

  .user-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 2px 8px;
    margin-top: 4px;
    flex-shrink: 0;
  }

  .bot-suggestions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-left: 38px;
  }

  .suggestion-chip {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    transition: all 0.2s;
  }

  .suggestion-chip:hover {
    border-color: rgba(240,106,255,0.3);
    color: var(--text);
    background: rgba(240,106,255,0.07);
  }

  .bot-bottom-bar {
    border-top: 1px solid var(--border);
    background: var(--surface2);
  }

  .hero-stats-bar {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .hstat { text-align: center; }

  .hstat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
    background: var(--grad-short);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }

  .hstat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 500;
  }

  .hstat-div {
    width: 1px;
    height: 28px;
    background: var(--border);
  }
  .mac-titlebar {
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mac-dots {
    position: absolute;
    left: 16px;
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .mac-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: block;
  }

  .mac-close  { background: #ff5f57; }
  .mac-min    { background: #febc2e; }
  .mac-max    { background: #28c840; }

  .mac-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.1px;
  }

  /* Remove old toolbar styles */
  .bot-toolbar-row { display: none; }
  .tool-chip { display: none; }

  .bot-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
  }

  .bot-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14.5px;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    outline: none;
  }

  .bot-input::placeholder { color: var(--text-muted); }

  .bot-send {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--grad-short);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: white;
    transition: opacity 0.2s, transform 0.15s;
    flex-shrink: 0;
  }

  .bot-send:hover { opacity: 0.85; transform: scale(1.05); }

  .typing-dots {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    padding: 12px 16px;
    display: flex;
    gap: 4px;
    align-items: center;
  }

  .typing-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: tdot 1.2s ease-in-out infinite;
  }
  .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
  .typing-dots span:nth-child(3) { animation-delay: 0.4s; }

  @keyframes tdot {
    0%,80%,100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-5px); opacity: 1; }
  }

  @keyframes popIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
  }

  .bot-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--surface2);
  }

  .bot-avatar {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
  }

  .bot-name { font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -0.2px; }

  .bot-status {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 1px;
  }

  .bot-online {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #52d98a;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .bot-model-pill {
    margin-left: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
  }

  .bot-messages {
    padding: 20px;
    min-height: 220px;
    max-height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
  }

  .bot-messages::-webkit-scrollbar { width: 3px; }
  .bot-messages::-webkit-scrollbar-track { background: transparent; }
  .bot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

  .bot-greeting { display: flex; align-items: flex-start; gap: 10px; }

  .bot-greeting-avatar {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: var(--grad-short);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    color: white;
    flex-shrink: 0;
  }

  .bot-greeting-text {
    background: linear-gradient(135deg, rgba(240,106,255,0.1), rgba(122,179,255,0.08));
    border: 1px solid rgba(240,106,255,0.15);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    padding: 12px 15px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
  }

  .bot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-left: 40px;
  }

  .suggestion-chip {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    transition: all 0.2s;
  }

  .suggestion-chip:hover {
    border-color: rgba(240,106,255,0.3);
    color: var(--text);
    background: rgba(240,106,255,0.07);
  }

  .user-msg-bubble {
    align-self: flex-end;
    background: rgba(240,106,255,0.1);
    border: 1px solid rgba(240,106,255,0.18);
    border-radius: 14px;
    border-bottom-right-radius: 4px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: var(--text);
    max-width: 80%;
    animation: popIn 0.2s ease both;
    word-break: break-word;
  }

  .ai-msg-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: popIn 0.3s ease both;
  }

  .ai-msg-bubble {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.55;
    max-width: 80%;
  }

  .typing-indicator {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .typing-dots {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    padding: 12px 16px;
    display: flex;
    gap: 4px;
    align-items: center;
  }

  .typing-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typing 1.2s ease-in-out infinite;
  }
  .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
  .typing-dots span:nth-child(3) { animation-delay: 0.4s; }

  @keyframes typing {
    0%,80%,100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-5px); opacity: 1; }
  }

  @keyframes popIn {
    from { opacity: 0; transform: translateY(6px) scale(0.97); }
    to { opacity: 1; transform: none; }
  }

  .bot-toolbar {
    display: flex;
    gap: 4px;
    padding: 10px 16px;
    border-top: 1px solid var(--border);
  }

  .tool-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }

  .tool-btn:hover {
    background: var(--surface2);
    color: var(--text-mid);
    border-color: rgba(255,255,255,0.1);
  }

  .bot-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
  }

  .bot-input {
    flex: 1;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .bot-input::placeholder { color: var(--text-muted); }

  .bot-input:focus {
    border-color: rgba(240,106,255,0.35);
    background: rgba(240,106,255,0.04);
  }

  .bot-send {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: var(--grad-short);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: white;
    transition: opacity 0.2s, transform 0.15s;
    flex-shrink: 0;
  }

  .bot-send:hover { opacity: 0.85; transform: scale(1.05); }

    .chat-badge-item {
    flex: 1;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }

  .float-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }

  .float-text-main { font-size: 13px; font-weight: 600; color: var(--text); }
  .float-text-sub  { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

  /* ===== SECTION COMMON ===== */
  section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
  }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--grad-short);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 0;
  }

  .section-sub {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 460px;
    line-height: 1.7;
    font-weight: 400;
  }

  .section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 52px;
    gap: 60px;
  }

  /* ===== FEATURES GRID ===== */
  .features-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }



  .feature-card {
    background: rgba(255,255,255,0.025);
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
  }

  .feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(155,127,255,0.25);
  }

  .feature-card.large {
    grid-column: span 2;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155,127,255,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .feature-card:hover::before { opacity: 1; }

  .feature-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .fi-purple { background: rgba(155,127,255,0.15); }
  .fi-blue   { background: rgba(91,168,255,0.15); }
  .fi-green  { background: rgba(82,217,138,0.15); }
  .fi-pink   { background: rgba(255,110,180,0.15); }
  .fi-amber  { background: rgba(255,184,77,0.15); }
  .fi-teal   { background: rgba(60,200,200,0.15); }

  .feature-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.3;
  }

  .feature-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 400;
  }

  /* ===== AGENTS SECTION ===== */
  .agents-section {
    background: rgba(255,255,255,0.025);
    border-radius: 28px;
    border: 1px solid var(--border);
    padding: 80px;
    margin: 0 40px;
    position: relative;
    overflow: hidden;
  }

  .agents-bg-glow {
    position: absolute;
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(240,106,255,0.06) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
  }

  /* Slider */
  .agents-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
  }

  .agents-slider-viewport {
    flex: 1;
    overflow: visible;
    padding: 8px 0;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .agents-slider-track {
    display: flex;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .slider-btn {
    position: relative;
    z-index: 5;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text-mid);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .slider-btn:hover {
    background: rgba(240,106,255,0.1);
    border-color: rgba(240,106,255,0.3);
    color: var(--pink);
  }

  .slider-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 20px;
  }

  .sdot {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--border);
    cursor: pointer;
    transition: width 0.3s, background 0.3s;
    border: none;
  }
  .sdot.active {
    width: 22px;
    background: var(--grad-short);
    background: linear-gradient(90deg, #f06aff, #7ab3ff);
  }

  .agent-card {
    transform-origin: center;
    will-change: transform;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc((100% - 48px) / 5);
    min-width: 0;
  }

  .agent-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196,181,253,0.25);
    background: rgba(196,181,253,0.06);
  }

  .agent-emoji {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
  }

  .agent-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
  }

  .agent-role {
    font-size: 12px;
    color: var(--text-mid);
    margin-top: 4px;
  }

  /* ===== MODELS SECTION ===== */
  .models-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .model-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
  }

  .model-pill:hover {
    border-color: rgba(196,181,253,0.2);
    background: rgba(196,181,253,0.05);
  }

  .model-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }

  /* ===== PRICING ===== */
  .pricing-grid {
  display: grid;
    grid-template-columns: 0.85fr 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 0;
    align-items: stretch;
  }

  .price-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    transition: transform 0.2s;
  display: grid;
    grid-template-rows: 130px 340px auto;
  }

  .price-card:hover { transform: translateY(-3px); }

  .price-card.featured {
    background: linear-gradient(160deg, rgba(240,106,255,0.06), rgba(122,179,255,0.03));
    border-color: rgba(240,106,255,0.15);
    box-shadow: 0 0 40px rgba(240,106,255,0.08);
  }

  .price-card.pro {
    background: linear-gradient(160deg, rgba(255,224,102,0.04), rgba(240,106,255,0.03));
    border-color: rgba(255,224,102,0.12);
  }

  .price-tier-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 6px;
  }

  .pro-label {
    background: linear-gradient(90deg, #ffe066, #f06aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .price-desc-tag {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
  }

  .points-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
    margin-bottom: 24px;
  }

  .pro-pill {
    background: rgba(255,224,102,0.06);
    border-color: rgba(255,224,102,0.15);
    color: #ffe066;
  }

  .max-badge {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-mid);
    letter-spacing: 1px;
  }

  .price-header {
    height: 130px;
    overflow: hidden;
  }

  .price-body {
    /* features list fills available space */
  }

  .price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
  }

  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 400;
    line-height: 1.5;
  }

  .feat-yes {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(82,217,138,0.12);
    border: 1px solid rgba(82,217,138,0.25);
    color: #52d98a;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .feat-no {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(255,80,80,0.08);
    border: 1px solid rgba(255,80,80,0.15);
    color: rgba(255,80,80,0.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 9px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .price-features li:has(.feat-no) {
    opacity: 0.4;
  }

  .price-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .price-big {
    font-family: 'Unbounded', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--text);
    line-height: 1;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
  }

  .pro-price {
    background: linear-gradient(90deg, #ffe066, #f06aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .price-unit {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
    white-space: nowrap;
  }

  .btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-plan:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(196,181,253,0.2);
  }

  .price-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--grad-short);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    width: fit-content;
  }

  .btn-pro {
    background: linear-gradient(135deg, #ffe066, #f06aff);
    color: #0a0a0a;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: none;
  }
  .btn-pro:hover {
    transform: translateY(-1px);
    box-shadow: none;
  }

  /* ===== CTA FINAL ===== */
  .cta-section {
    margin: 0 40px 100px;
    background: rgba(196,181,253,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(196,181,253,0.12);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-glow {
    position: absolute;
    width: 600px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(240,106,255,0.12) 0%, transparent 70%);
    top: -150px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .cta-section .section-title { font-size: 48px; letter-spacing: -2px; }

  .cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
  }

  .cta-buttons .btn { padding: 15px 32px; font-size: 15px; }

  /* ===== FOOTER ===== */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  footer p {
    font-size: 13px;
    color: var(--text-muted);
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--text-mid); }

  /* ===== DIVIDER ===== */
  .full-divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 0;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
    .hero-title { font-size: 36px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.large { grid-column: span 1; }
    .agents-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .agents-section, .cta-section { margin: 0 24px; }
    section { padding: 60px 24px; }
    /* Full-bleed on small screens (desktop uses section { max-width: 1200px; margin: 0 auto; }) */
    .nav-cta, .hero, section, .agents-section, .cta-section { max-width: 100%; }
  }


/* ===== Refactor: extracted from inline styles (keep visuals identical) ===== */
.bg-blobs{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden}
.bg-blob{position:absolute;border-radius:50%}
.bg-blob-1{width:800px;height:800px;top:-200px;left:-200px;background:radial-gradient(ellipse,rgba(196,181,253,0.06) 0%,transparent 65%)}
.bg-blob-2{width:600px;height:600px;bottom:-100px;right:-100px;background:radial-gradient(ellipse,rgba(147,197,253,0.05) 0%,transparent 65%)}
.bg-blob-3{width:500px;height:500px;top:40%;left:40%;transform:translate(-50%,-50%);background:radial-gradient(ellipse,rgba(232,121,249,0.04) 0%,transparent 65%)}

.hero-wrap{position:relative;overflow:hidden}

.btn-xl{padding:14px 36px;font-size:15px}
.btn-lg{padding:14px 24px;font-size:14px}

.mac-spacer{width:60px}


/* ===== Logo images ===== */
.nav-logo-img{width:24px;height:24px;object-fit:contain;display:block}
.bot-avatar img{width:22px;height:22px;object-fit:contain;display:block}
.bot-avatar-sm img{width:18px;height:18px;object-fit:contain;display:block}

/* ===== Cookie banner ===== */
.cookie-banner{position:fixed;left:16px;right:16px;bottom:16px;z-index:200;display:block}
.cookie-inner{max-width:1100px;margin:0 auto;display:flex;gap:14px;align-items:flex-start;justify-content:space-between;padding:14px 14px;border-radius:16px;background:rgba(12,12,20,0.78);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);border:1px solid rgba(255,255,255,0.10);box-shadow:0 12px 48px rgba(0,0,0,0.45)}
.cookie-title{font-family:"Unbounded",sans-serif;font-size:13px;font-weight:700;letter-spacing:-0.3px;color:var(--text)}
.cookie-desc{margin-top:4px;font-size:12.5px;color:var(--text-mid);line-height:1.5;max-width:720px}
.cookie-actions{display:flex;gap:10px;align-items:center;flex-shrink:0}
.cookie-link{border-color:rgba(255,255,255,0.12)}
@media (max-width: 640px){.cookie-inner{flex-direction:column;align-items:stretch}.cookie-actions{justify-content:flex-end}}

/* ===== Cookie banner v3 ===== */
.cookie-privacy{color:rgba(196,181,253,0.95);text-decoration:underline;text-decoration-color:rgba(196,181,253,0.55)}
.cookie-privacy:hover{color:#fff;text-decoration-color:rgba(255,255,255,0.9)}

/* ===== Consent gating ===== */
.is-disabled{opacity:0.45;filter:saturate(0.6);pointer-events:none;}

.cookie-note{margin:0 0 10px 0;padding:10px 12px;border-radius:12px;background:rgba(240,106,255,0.10);border:1px solid rgba(240,106,255,0.22);color:var(--text);font-size:12.5px;line-height:1.45}


.bot-login-row{padding:10px 16px;border-top:1px solid rgba(255,255,255,0.07);background:rgba(255,255,255,0.02)}


.chat-login-wrap{margin-top:10px}
.chat-login-btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:12px;text-decoration:none;font-weight:700;font-size:13px;color:#fff;background:var(--grad-short);border:1px solid rgba(196,181,253,0.18)}
.chat-login-btn:hover{opacity:0.9;transform:translateY(-1px)}

/* ===== Mobile fine-tuning (safe overrides) ===== */
@media (max-width: 480px){
  nav{height:64px;padding:0 14px}
  body{padding-top:64px}
  .nav-logo-name{font-size:14px}
  .btn{padding:9px 14px;font-size:13px}
  .btn-xl{padding:12px 18px;font-size:14px}
  .btn-lg{padding:11px 16px;font-size:13px}

  section{padding:52px 16px}
  .hero{padding:104px 16px 52px}
  .hero-title{font-size:32px;line-height:1.15}
  .hero-subtitle{font-size:14px}

  .pricing-grid{gap:14px}
  .price-card{padding:18px}

  .bot-window{min-height:460px;max-height:600px;border-radius:18px 18px 0 0}
  .bot-messages-area{padding:16px 16px 12px;max-height:340px}

  /* prevent horizontal jitter on small phones */
  .agents-section,.cta-section{margin:0 16px}
}

@media (max-width: 360px){
  .hero-title{font-size:28px}
  .nav-cta .btn{padding:9px 12px}
  .bot-window{min-height:430px;max-height:560px}
  .bot-messages-area{max-height:320px}
}

/* ===== Mobile nav buttons smaller ===== */
@media (max-width: 768px){
  .nav-cta .btn{padding:8px 12px;font-size:12.5px;border-radius:10px}
  .nav-cta .btn-primary{box-shadow:none}
}

/* ===== Prevent iOS Safari zoom on input focus (demo chat) ===== */
#botInput{font-size:16px;}
.bot-input input, .bot-input textarea{font-size:16px;}

/* ===== Pricing slider on mobile ===== */
@media (max-width: 768px){
  .pricing-grid{
    display:flex;
    flex-wrap:nowrap;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:6px;
  }
  .pricing-grid::-webkit-scrollbar{height:4px}
  .pricing-grid::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.10);border-radius:999px}
  .price-card{flex:0 0 86%; scroll-snap-align:center;}
}
@media (max-width: 420px){
  .price-card{flex-basis:92%;}
}

/* ===== Mobile fix: header alignment + avoid ugly wraps ===== */
@media (max-width: 480px){
  nav{
    display:flex !important;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    height:auto;
    min-height:64px;
    padding:10px 12px;
  }
  body{padding-top:76px}

  .nav-logo{gap:8px}
  .nav-logo-name{font-size:13.5px; line-height:1.1}
  .nav-logo-icon{width:32px;height:32px;border-radius:10px}

  .nav-cta{gap:8px; align-items:stretch}
  .nav-cta .btn{
    padding:8px 10px;
    font-size:12px;
    border-radius:10px;
    line-height:1.15;
    white-space:normal;
    text-align:center;
  }
  /* make the primary CTA not dominate */
  .nav-cta .btn-primary{padding:8px 10px}
}

@media (max-width: 360px){
  .nav-logo-name{font-size:12.5px}
  .nav-cta .btn{font-size:11.5px;padding:7px 9px}
}

/* ===== Mobile fix: remove right gap / force full-bleed background ===== */
html, body{width:100%; max-width:100%; overflow-x:hidden}
body{background-attachment:scroll}

/* ===== Mobile: smaller headings ===== */
@media (max-width: 480px){
  .hero-title{font-size:28px !important; line-height:1.12}
  h2{font-size:22px !important; line-height:1.18}
  h3{font-size:16px !important; line-height:1.22}
  .section-title{font-size:22px !important; line-height:1.18}
}
@media (max-width: 360px){
  .hero-title{font-size:26px !important}
  h2,.section-title{font-size:20px !important}
}

/* ===== Mobile: smaller hero CTA buttons ===== */
@media (max-width: 480px){
  .hero-cta .btn{padding:10px 14px !important;font-size:13px !important;border-radius:12px;}
  .hero-cta{gap:10px}
}
@media (max-width: 360px){
  .hero-cta .btn{padding:9px 12px !important;font-size:12.5px !important}
}

/* ===== Mobile: hero CTA keep one-line ===== */
@media (max-width: 480px){
  .hero-cta{flex-wrap:nowrap}
  .hero-cta .btn{
    white-space:nowrap;
    padding:10px 12px !important;
    font-size:12.5px !important;
  }
}
@media (max-width: 390px){
  .hero-cta .btn{padding:9px 10px !important;font-size:12px !important;}
}
@media (max-width: 360px){
  .hero-cta .btn{padding:8px 9px !important;font-size:11.5px !important;}
}

/* ===== Desktop: key sections share centered 1200px rail; header subtitle flush right like mockup ===== */
@media (min-width: 769px){
  #features, #usecases, #models, #pricing {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-header .section-sub {
    text-align: right;
  }
}

/* ===== Mobile: hero CTA stacked ===== */
@media (max-width: 480px){
  .hero-cta{flex-direction:column;align-items:stretch;gap:10px}
  .hero-cta .btn{width:100%;justify-content:center}
}

/* ===== Mobile: nav CTA buttons tighter (override) ===== */
@media (max-width: 480px){
  .nav-cta{gap:6px !important}
  .nav-cta .btn{
    padding:7px 10px !important;
    font-size:11.5px !important;
    border-radius:10px !important;
    line-height:1.15 !important;
    white-space:nowrap !important;
  }
  .nav-cta .btn-outline{max-width:84px;justify-content:center}
  .nav-cta .btn-primary{max-width:168px;justify-content:center}
}
@media (max-width: 390px){
  .nav-cta .btn{padding:7px 9px !important;font-size:11px !important}
  .nav-cta .btn-primary{max-width:156px}
}

/* ===== Mobile: hero main buttons smaller (primary + ghost) ===== */
@media (max-width: 480px){
  .hero-cta .btn{
    padding:10px 14px !important;
    font-size:13px !important;
    border-radius:14px !important;
    min-height:44px;
  }
}
@media (max-width: 390px){
  .hero-cta .btn{padding:9px 12px !important;font-size:12.5px !important;min-height:42px;}
}

/* ===== Mobile: hero buttons extra compact ===== */
@media (max-width: 480px){
  .hero-cta .btn{padding:8px 12px !important;font-size:12px !important;border-radius:12px !important;min-height:40px;}
}
@media (max-width: 390px){
  .hero-cta .btn{padding:7px 10px !important;font-size:11.5px !important;min-height:38px;}
}

/* ===== Mobile: hero CTA row (actual class) ===== */
@media (max-width: 480px){
  .hero-cta-row{display:flex;flex-direction:column;gap:10px;align-items:stretch}
  .hero-cta-row .btn{width:100%;justify-content:center;white-space:nowrap;padding:8px 12px !important;font-size:12px !important;border-radius:12px !important;min-height:40px;}
}
@media (max-width: 390px){
  .hero-cta-row .btn{padding:7px 10px !important;font-size:11.5px !important;min-height:38px;}
}

/* ===== Mobile: hero CTA buttons inline (2 columns) ===== */
@media (max-width: 480px){
  .hero-cta-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;align-items:stretch}
  .hero-cta-row .btn{width:100%;justify-content:center;white-space:normal;line-height:1.15;padding:9px 10px !important;font-size:12px !important;min-height:40px;}
}
@media (max-width: 390px){
  .hero-cta-row{gap:8px}
  .hero-cta-row .btn{padding:8px 9px !important;font-size:11.5px !important;min-height:38px;}
}

/* ===== Mobile: agents slider touch-friendly ===== */
@media (max-width: 768px){
  .agents-slider-wrap{gap:10px}
  .slider-btn{display:none}
  .agents-slider-viewport{overflow-x:auto;overflow-y:visible;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;padding:4px 0}
  .agents-slider-track{gap:10px;scroll-snap-type:x mandatory}
  .agent-card{flex:0 0 74%;scroll-snap-align:center;padding:18px 14px}
  .agent-emoji{font-size:28px;margin-bottom:10px}
  .agent-name{font-size:13.5px}
  .agent-role{font-size:12px}
  .slider-dots{margin-top:14px}
}
@media (max-width: 420px){
  .agent-card{flex-basis:82%}
}

/* ===== Mobile: section headers stacked (subtitle under title) ===== */
@media (max-width: 768px){
  .section-header{flex-direction:column;gap:14px}
  .section-sub{max-width:none}
}

/* ===== Mobile: agents header stacked (subtitle under title) ===== */
@media (max-width: 768px){
  .agents-section > div[style*="display:flex"]{flex-direction:column !important; gap:14px !important}
  .agents-section > div[style*="display:flex"] .section-sub{max-width:none !important; padding-top:0 !important}
}

/* ===== Mobile: agents section tighter (reduce empty space) ===== */
@media (max-width: 480px){
  .agents-section{padding:34px 18px !important; margin:0 14px !important; border-radius:22px}
  .agents-slider-wrap{margin-top:18px !important}
  .section-header{margin-bottom:24px !important; gap:18px !important}
}

/* ===== Models section alignment ===== */
#models .models-head{display:flex;justify-content:space-between;align-items:flex-start;gap:60px;margin-bottom:40px}
#models .models-head .section-sub{margin-bottom:4px;max-width:560px}
@media (max-width: 768px){
  #models .models-head{flex-direction:column;gap:14px;margin-bottom:22px}
  #models .models-head .section-sub{max-width:none}
  .models-strip{margin-top:22px}
}

/* ===== CTA buttons match hero style ===== */
.cta-buttons{display:flex;gap:14px;justify-content:center;margin-top:22px;flex-wrap:wrap}
.cta-buttons .btn{min-width:220px}
@media (max-width: 480px){
  .cta-buttons{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .cta-buttons .btn{min-width:0}
}

/* ===== Footer smaller text ===== */
footer p{font-size:12px;color:var(--text-muted)}
.footer-links a{font-size:12px}
@media (max-width:480px){
  footer{padding:22px 16px}
  .footer-links{gap:14px;flex-wrap:wrap;justify-content:center}
}
/* ===== Mobile: pricing header stacked ===== */
@media (max-width: 768px){
  #pricing > div[style*="display:flex"]{flex-direction:column !important; gap:14px !important; margin-bottom:22px !important;}
  #pricing .section-sub{padding-top:0 !important; max-width:none !important;}
}

/* ===== CTA section: buttons match HERO CTA row ===== */
.cta-section .cta-buttons{display:grid;grid-template-columns:1fr 1fr;gap:10px;align-items:stretch;justify-content:stretch;margin-top:22px}
.cta-section .cta-buttons .btn{width:100%;justify-content:center;border-radius:14px}

@media (min-width: 769px){
  .cta-section .cta-buttons{max-width:520px;margin-left:auto;margin-right:auto;gap:14px}
}

@media (max-width: 480px){
  .cta-section .cta-buttons .btn{padding:9px 10px !important;font-size:12px !important;min-height:40px}
}

/* ===== Mobile: footer extra small ===== */
@media (max-width: 480px){
  footer p{font-size:11px !important; line-height:1.5}
  .footer-links a{font-size:11px !important}
}

/* ===== Footer alignment fix ===== */
footer{justify-content:space-between; gap:18px}
@media (max-width: 768px){
  footer{flex-direction:column; align-items:center; text-align:center; padding:22px 16px}
  footer p{margin:0}
  .footer-links{justify-content:center; flex-wrap:wrap}
}

/* ===== Pricing: equal button height in cards ===== */
.price-footer .btn{min-height:44px;display:inline-flex;align-items:center;justify-content:center}

/* ===== Mobile: models header stacked (subtitle under title) ===== */
@media (max-width: 768px){
  #models > div[style*="display:flex"]{flex-direction:column !important; gap:14px !important; margin-bottom:22px !important;}
  #models > div[style*="display:flex"] .section-sub{padding-top:0 !important; max-width:none !important;}
}

/* ===== Footer v2: multi-column grid ===== */
footer {
  display: block !important;
  border-top: 1px solid var(--border);
  padding: 60px 40px 0 !important;
  max-width: 1200px;
  margin: 0 auto;
  align-items: unset !important;
  flex-direction: unset !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-brand-logo img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.footer-brand-logo span {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 240px;
  margin: 0;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }
/* old .footer-links is now unused on pages with new footer */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  footer { padding: 40px 20px 0 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-links { gap: 16px; }
}
