/* Cookie AI — Apple-esque dark section */

.cookie-section {
    background: var(--surface-dark-bg);
    color: #F5F0E8;
    padding: var(--section-gap) 0;
    overflow: hidden;
}

.cookie-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-text .section-label {
    color: var(--sage);
}

.cookie-text h2 {
    color: #F5F0E8;
    margin-bottom: 16px;
}

.cookie-text > p {
    color: #A09890;
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 440px;
}

.cookie-capabilities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-capabilities li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #A09890;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.cookie-capabilities li:hover {
    color: #F5F0E8;
}

.cookie-capabilities li i {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(143, 181, 131, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-apple);
}

.cookie-capabilities li:hover i {
    background: rgba(143, 181, 131, 0.2);
}

/* Chat mockup — clean card */
.chat-mockup {
    background: var(--surface-dark-2);
    border: 0.5px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
    padding: 28px;
    max-width: 420px;
}

.chat-mockup__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.chat-mockup__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.chat-mockup__name {
    font-weight: 600;
    color: #F5F0E8;
    font-size: 0.95rem;
}

.chat-mockup__status {
    font-size: 0.78rem;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-mockup__status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.chat-bubble--user {
    background: rgba(255, 255, 255, 0.06);
    color: #F5F0E8;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.chat-bubble--cookie {
    background: rgba(143, 181, 131, 0.1);
    color: #D5D0C8;
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}

.chat-bubble--cookie strong {
    color: var(--sage);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 18px;
    align-self: flex-start;
    background: rgba(143, 181, 131, 0.06);
    border-radius: 16px;
    border-bottom-left-radius: 6px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    animation: typing-bounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
    30% { transform: translateY(-6px); opacity: 1; }
}
