.ki-berater-page { background: #F0F5F9; min-height: 100vh; } .ki-hero {
background: linear-gradient(135deg, #0B4F7A 0%, #083d61 100%);
padding: 2.5rem 1.5rem;
text-align: center;
}
.ki-hero__inner { max-width: 640px; margin-inline: auto; }
.ki-hero__badge {
display: inline-flex;
align-items: center;
gap: .5rem;
background: rgba(255,255,255,.15);
border: 1px solid rgba(255,255,255,.25);
border-radius: 20px;
padding: .3rem .9rem;
font-size: .78rem;
font-weight: 600;
color: rgba(255,255,255,.9);
margin-bottom: 1rem;
letter-spacing: .04em;
text-transform: uppercase;
}
.ki-pulse {
width: 8px; height: 8px;
background: #4ade80;
border-radius: 50%;
display: inline-block;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50%       { opacity: .6; transform: scale(1.3); }
}
.ki-hero__title {
font-family: 'Outfit', sans-serif;
font-size: clamp(1.5rem, 4vw, 2rem);
font-weight: 800;
color: #fff;
margin: 0 0 .6rem;
}
.ki-hero__sub {
font-size: .92rem;
color: rgba(255,255,255,.78);
line-height: 1.65;
margin: 0;
} .ki-layout { padding: 2rem 0 4rem; }
.ki-grid {
display: grid;
grid-template-columns: 1fr 300px;
gap: 1.5rem;
align-items: start;
} .ki-chat-wrap {
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 24px rgba(11,79,122,.10);
overflow: hidden;
display: flex;
flex-direction: column;
}
.ki-chat {
padding: 1.5rem;
min-height: 420px;
max-height: 560px;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 1rem;
scroll-behavior: smooth;
}
.ki-chat::-webkit-scrollbar { width: 4px; }
.ki-chat::-webkit-scrollbar-track { background: #f0f5f9; }
.ki-chat::-webkit-scrollbar-thumb { background: #c8dff0; border-radius: 2px; } .ki-msg {
display: flex;
align-items: flex-start;
gap: .65rem;
animation: msgIn .25s ease;
}
@keyframes msgIn {
from { opacity: 0; transform: translateY(8px); }
to   { opacity: 1; transform: translateY(0); }
}
.ki-msg--user {
flex-direction: row-reverse;
}
.ki-msg__avatar {
width: 32px; height: 32px;
background: #EBF4FB;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: #0B4F7A;
}
.ki-msg__bubble {
max-width: 80%;
padding: .75rem 1rem;
border-radius: 14px;
font-size: .88rem;
line-height: 1.65;
}
.ki-msg--bot .ki-msg__bubble {
background: #F0F5F9;
color: #1F2933;
border-radius: 4px 14px 14px 14px;
}
.ki-msg--user .ki-msg__bubble {
background: #0B4F7A;
color: #fff;
border-radius: 14px 4px 14px 14px;
}
.ki-msg__bubble p { margin: 0 0 .4rem; }
.ki-msg__bubble p:last-child { margin-bottom: 0; }
.ki-msg__bubble ul { margin: .4rem 0; padding-left: 1.2rem; }
.ki-msg__bubble li { margin-bottom: .2rem; } .ki-msg--typing .ki-msg__bubble {
display: flex;
align-items: center;
gap: 4px;
padding: .9rem 1rem;
}
.ki-dot {
width: 7px; height: 7px;
background: #9aacb8;
border-radius: 50%;
animation: dotBounce 1.2s infinite;
}
.ki-dot:nth-child(2) { animation-delay: .2s; }
.ki-dot:nth-child(3) { animation-delay: .4s; }
@keyframes dotBounce {
0%, 80%, 100% { transform: translateY(0); }
40%           { transform: translateY(-6px); }
} .ki-suggestions {
padding: .75rem 1.25rem;
display: flex;
flex-wrap: wrap;
gap: .5rem;
border-top: 1px solid #EEF4F8;
background: #FAFCFE;
}
.ki-suggest-btn {
background: #fff;
border: 1.5px solid #DDE7EF;
border-radius: 20px;
padding: .4rem .9rem;
font-size: .78rem;
font-weight: 600;
color: #0B4F7A;
cursor: pointer;
transition: all .15s;
white-space: nowrap;
}
.ki-suggest-btn:hover {
background: #EBF4FB;
border-color: #0B4F7A;
} .ki-input-wrap {
display: flex;
align-items: flex-end;
gap: .75rem;
padding: 1rem 1.25rem;
border-top: 1px solid #EEF4F8;
background: #fff;
}
.ki-input {
flex: 1;
resize: none;
border: 1.5px solid #DDE7EF;
border-radius: 10px;
padding: .65rem .9rem;
font-family: 'Inter', sans-serif;
font-size: .88rem;
line-height: 1.5;
color: #1F2933;
background: #F8FBFD;
transition: border-color .15s;
min-height: 44px;
max-height: 120px;
}
.ki-input:focus { outline: none; border-color: #0B4F7A; background: #fff; }
.ki-input::placeholder { color: #9aacb8; }
.ki-send-btn {
width: 44px; height: 44px;
background: #0B4F7A;
color: #fff;
border: none;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
flex-shrink: 0;
transition: background .15s, transform .15s;
}
.ki-send-btn:hover  { background: #083d61; transform: translateY(-1px); }
.ki-send-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.ki-disclaimer {
text-align: center;
font-size: .7rem;
color: #9aacb8;
padding: .5rem 1.25rem .75rem;
background: #fff;
margin: 0;
} .ki-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.ki-sidebar__card {
background: #fff;
border: 1.5px solid #DDE7EF;
border-radius: 14px;
padding: 1.1rem 1.25rem;
box-shadow: 0 2px 8px rgba(11,79,122,.06);
}
.ki-sidebar__card h3 {
display: flex;
align-items: center;
gap: .4rem;
font-family: 'Outfit', sans-serif;
font-size: .88rem;
font-weight: 700;
color: #0B4F7A;
margin: 0 0 .85rem;
padding-bottom: .65rem;
border-bottom: 1px solid #EEF4F8;
}
.ki-topic-list {
list-style: none;
padding: 0; margin: 0;
display: flex;
flex-direction: column;
gap: .3rem;
}
.ki-topic-btn {
width: 100%;
text-align: left;
background: #F8FBFD;
border: 1px solid #EEF4F8;
border-radius: 6px;
padding: .5rem .75rem;
font-size: .8rem;
color: #1F2933;
cursor: pointer;
transition: all .15s;
}
.ki-topic-btn:hover { background: #EBF4FB; border-color: #C8DFF0; color: #0B4F7A; } .ki-sidebar__card--phone {
background: linear-gradient(135deg, #0B4F7A, #083d61);
border-color: #0B4F7A;
}
.ki-sidebar__card--phone h3 { color: #fff; border-bottom-color: rgba(255,255,255,.15); }
.ki-sidebar__card--phone p  { font-size: .82rem; color: rgba(255,255,255,.8); margin-bottom: .75rem; }
.ki-sidebar__card--phone small { display: block; font-size: .72rem; color: rgba(255,255,255,.6); text-align: center; margin-top: .4rem; }
.ki-phone-btn {
display: flex;
align-items: center;
justify-content: center;
gap: .5rem;
width: 100%;
padding: .7rem;
background: rgba(255,255,255,.15);
border: 1px solid rgba(255,255,255,.3);
border-radius: 8px;
color: #fff;
font-family: 'Outfit', sans-serif;
font-weight: 700;
font-size: .92rem;
text-decoration: none;
transition: background .15s;
}
.ki-phone-btn:hover { background: rgba(255,255,255,.25); color: #fff; } .ki-sidebar__card--search p { font-size: .82rem; color: #637381; margin-bottom: .75rem; }
.ki-search-btn {
display: flex;
align-items: center;
justify-content: center;
gap: .5rem;
width: 100%;
padding: .7rem;
background: #35B6C9;
color: #fff;
border-radius: 8px;
font-family: 'Outfit', sans-serif;
font-weight: 700;
font-size: .88rem;
text-decoration: none;
transition: background .2s;
}
.ki-search-btn:hover { background: #2da0b2; color: #fff; } @media (max-width: 900px) {
.ki-grid { grid-template-columns: 1fr; }
.ki-sidebar { flex-direction: row; flex-wrap: wrap; }
.ki-sidebar__card { flex: 1; min-width: 240px; }
}
@media (max-width: 600px) {
.ki-chat { min-height: 320px; max-height: 420px; }
.ki-sidebar { flex-direction: column; }
.ki-suggestions { display: none; } } .ki-search-link-wrap {
margin-top: .85rem;
padding-top: .75rem;
border-top: 1px solid rgba(11,79,122,.12);
}
.ki-search-link {
display: inline-flex;
align-items: center;
gap: .45rem;
background: #0B4F7A;
color: #fff;
padding: .55rem 1.1rem;
border-radius: 20px;
font-family: 'Outfit', sans-serif;
font-size: .82rem;
font-weight: 700;
text-decoration: none;
transition: background .15s, transform .15s;
box-shadow: 0 2px 8px rgba(11,79,122,.25);
}
.ki-search-link:hover {
background: #083d61;
color: #fff;
transform: translateY(-1px);
box-shadow: 0 4px 14px rgba(11,79,122,.35);
} .ki-seo-content {
background: #F8FBFD;
border-top: 1px solid #DDE7EF;
padding: 3rem 0;
}
.ki-seo-inner {
max-width: 900px;
margin: 0 auto;
}
.ki-seo-inner h2 {
font-family: 'Outfit', sans-serif;
font-size: 1.5rem;
font-weight: 700;
color: #0B4F7A;
margin: 0 0 1rem;
}
.ki-seo-inner h3 {
font-family: 'Outfit', sans-serif;
font-size: 1.1rem;
font-weight: 700;
color: #1F2933;
margin: 1.5rem 0 .5rem;
}
.ki-seo-inner p {
font-size: .95rem;
color: #4a5568;
line-height: 1.75;
margin-bottom: 1rem;
}
.ki-seo-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin: 1.5rem 0;
}
.ki-seo-card {
background: #fff;
border: 1.5px solid #DDE7EF;
border-radius: 12px;
padding: 1.25rem;
}
.ki-seo-card h3 {
margin-top: 0;
font-size: 1rem;
color: #0B4F7A;
}
.ki-seo-card ul {
margin: .5rem 0 0 1rem;
padding: 0;
}
.ki-seo-card li {
font-size: .88rem;
color: #4a5568;
margin-bottom: .4rem;
line-height: 1.5;
}
.ki-seo-card a {
color: #0B4F7A;
text-decoration: none;
font-weight: 600;
}
.ki-seo-card a:hover { text-decoration: underline; }
@media (max-width: 640px) {
.ki-seo-grid { grid-template-columns: 1fr; }
}