:root {
    --kk-bg: #f7f9fc;
    --kk-surface: #ffffff;
    --kk-surface-2: #eef3f8;
    --kk-text: #102033;
    --kk-muted: #637083;
    --kk-line: #dce4ee;
    --kk-primary: #f5b800;
    --kk-primary-2: #ffcb33;
    --kk-blue: #134a8e;
    --kk-blue-2: #0b376f;
    --kk-success: #16825d;
    --kk-danger: #b42318;
    --kk-shadow: 0 22px 55px rgba(15, 38, 67, .10);
    --kk-radius: 20px;
    --kk-container: 1220px;
}

/* Public application center */
.kk-application-hero { background: radial-gradient(circle at 85% 15%, rgba(34,211,238,.18), transparent 34%), linear-gradient(135deg, #071936, #0b2d61); color: #fff; }
.kk-application-hero p { max-width: 760px; color: rgba(255,255,255,.76); }
.kk-application-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.45fr); gap: 28px; align-items: start; }
.kk-application-types { display: grid; gap: 12px; position: sticky; top: 92px; }
.kk-application-type { display: grid; grid-template-columns: 48px 1fr auto; gap: 13px; align-items: center; padding: 17px; border: 1px solid var(--kk-border); border-radius: 18px; background: var(--kk-surface); color: var(--kk-text); text-decoration: none; box-shadow: 0 12px 32px rgba(15,35,75,.06); transition: .2s ease; }
.kk-application-type:hover,.kk-application-type.active { transform: translateY(-2px); border-color: #168ee3; box-shadow: 0 18px 38px rgba(22,142,227,.14); }
.kk-application-type.active { background: linear-gradient(135deg, rgba(22,142,227,.12), rgba(34,211,238,.08)); }
.kk-application-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(22,142,227,.1); font-size: 22px; }
.kk-application-type strong,.kk-application-type small { display: block; }
.kk-application-type small { margin-top: 4px; color: var(--kk-muted); line-height: 1.35; }
.kk-application-welcome { min-height: 440px; padding: clamp(28px,5vw,58px); border: 1px solid var(--kk-border); border-radius: 24px; background: linear-gradient(145deg, var(--kk-surface), rgba(22,142,227,.07)); }
.kk-application-welcome > span { color: #078de0; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.kk-application-welcome h2 { max-width: 620px; margin: 14px 0; font-size: clamp(30px,4vw,52px); line-height: 1.04; }
.kk-application-welcome li { margin: 10px 0; color: var(--kk-muted); }
.kk-application-form { margin: 0; }
@media (max-width: 980px) { .kk-application-layout { grid-template-columns: 1fr; } .kk-application-types { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 640px) { .kk-application-types { grid-template-columns: 1fr; } .kk-application-type { padding: 14px; } }

html[data-theme="dark"] {
    --kk-bg: #0c1118;
    --kk-surface: #121a24;
    --kk-surface-2: #17212d;
    --kk-text: #f4f7fb;
    --kk-muted: #a4b0bf;
    --kk-line: #293645;
    --kk-blue: #4b86cc;
    --kk-blue-2: #2e6eb9;
    --kk-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--kk-bg);
    color: var(--kk-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.kk-site-shell { min-height: 100vh; overflow: hidden; }
.kk-container { width: min(calc(100% - 36px), var(--kk-container)); margin-inline: auto; }
.kk-section { padding-block: 92px; }
.kk-section-soft { padding-block: 92px; background: var(--kk-surface-2); }
.kk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--kk-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.kk-eyebrow::before { width: 28px; height: 3px; content: ""; border-radius: 9px; background: var(--kk-primary); }

.kk-topbar { position: relative; z-index: 50; background: #102033; color: #dce6f2; font-size: 12px; }
.kk-topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.kk-topbar-left, .kk-topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.kk-topbar a { text-decoration: none; transition: color .2s ease; }
.kk-topbar a:hover { color: var(--kk-primary); }

.kk-header {
    position: sticky;
    top: 0;
    z-index: 45;
    border-bottom: 1px solid color-mix(in srgb, var(--kk-line) 75%, transparent);
    background: color-mix(in srgb, var(--kk-surface) 92%, transparent);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease, background .25s ease;
}
.kk-header.is-scrolled { box-shadow: 0 12px 35px rgba(15, 38, 67, .10); }
.kk-header-inner { min-height: 82px; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 28px; }
.kk-brand { display: inline-flex; align-items: center; width: 178px; text-decoration: none; }
.kk-brand img { width: 100%; max-height: 60px; object-fit: contain; object-position: left center; }
.kk-logo-dark { display: none; }
html[data-theme="dark"] .kk-logo-light { display: none; }
html[data-theme="dark"] .kk-logo-dark { display: block; }
.kk-main-nav { display: flex; justify-content: center; align-items: center; gap: 5px; }
.kk-nav-entry { position: relative; }
.kk-nav-entry > a {
    min-height: 46px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    color: var(--kk-text);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.kk-nav-entry > a:hover, .kk-nav-entry > a.is-active { background: var(--kk-surface-2); color: var(--kk-blue); }
.kk-chevron { font-size: 12px; color: var(--kk-muted); }
.kk-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    padding: 10px;
    border: 1px solid var(--kk-line);
    border-radius: 15px;
    background: var(--kk-surface);
    box-shadow: var(--kk-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.kk-dropdown a { display: block; padding: 11px 12px; border-radius: 9px; color: var(--kk-text); font-size: 13px; font-weight: 700; text-decoration: none; }
.kk-dropdown a:hover { background: var(--kk-surface-2); color: var(--kk-blue); }
.kk-nav-entry:hover .kk-dropdown, .kk-nav-entry:focus-within .kk-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.kk-header-actions { display: flex; align-items: center; gap: 9px; }
.kk-theme-toggle, .kk-menu-toggle {
    border: 1px solid var(--kk-line);
    background: var(--kk-surface);
    color: var(--kk-text);
    cursor: pointer;
}
.kk-theme-toggle { width: 42px; height: 42px; border-radius: 50%; font-size: 18px; }
.kk-menu-toggle { display: none; width: 44px; height: 42px; padding: 10px; border-radius: 10px; }
.kk-menu-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 4px; background: currentColor; }

.kk-btn {
    min-height: 44px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.kk-btn:hover { transform: translateY(-2px); }
.kk-btn-primary { background: var(--kk-primary); color: #152033; box-shadow: 0 10px 24px rgba(245, 184, 0, .24); }
.kk-btn-primary:hover { background: var(--kk-primary-2); box-shadow: 0 14px 28px rgba(245, 184, 0, .30); }
.kk-btn-ghost { border-color: var(--kk-line); background: var(--kk-surface); color: var(--kk-text); }
.kk-btn-ghost:hover { border-color: var(--kk-blue); color: var(--kk-blue); }
.kk-btn-dark { background: #102033; color: #fff; }
.kk-btn-light { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.12); color: #fff; }
.kk-btn-whatsapp { margin-top: 8px; background: #21b35b; color: #fff; }
.kk-btn-lg { min-height: 52px; padding-inline: 23px; border-radius: 13px; font-size: 14px; }

.kk-alert { margin-top: 16px; padding: 14px 18px; border-radius: 12px; font-size: 14px; }
.kk-alert-success { border: 1px solid #8fd6ba; background: #e8f8f1; color: #0c6545; }
.kk-alert-error { border: 1px solid #f3aaa4; background: #fff0ef; color: #8d2119; }
.kk-alert ul { margin: 8px 0 0 18px; padding: 0; }

.kk-home-hero {
    position: relative;
    padding: 82px 0 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 184, 0, .22), transparent 26%),
        radial-gradient(circle at 10% 30%, rgba(19, 74, 142, .12), transparent 30%),
        linear-gradient(135deg, color-mix(in srgb, var(--kk-surface) 95%, var(--kk-blue) 5%), var(--kk-bg));
}
.kk-home-hero::after { position: absolute; inset: auto 0 0; height: 1px; content: ""; background: var(--kk-line); }
.kk-home-hero-grid { min-height: 540px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 52px; }
.kk-home-hero-copy { position: relative; z-index: 2; }
.kk-hero-slide { display: none; }
.kk-hero-slide.is-active { display: block; animation: kkFadeUp .45s ease both; }
.kk-hero-slide h1 { margin: 18px 0 20px; font-size: clamp(42px, 5.2vw, 72px); line-height: .98; letter-spacing: -.045em; }
.kk-hero-slide h1 span, .kk-hero-slide h1 strong { display: block; }
.kk-hero-slide h1 strong { color: var(--kk-blue); }
.kk-hero-slide p { max-width: 670px; margin: 0; color: var(--kk-muted); font-size: 18px; line-height: 1.75; }
.kk-hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.kk-slider-controls { margin-top: 34px; display: flex; align-items: center; gap: 14px; }
.kk-slider-controls > button { width: 40px; height: 40px; border: 1px solid var(--kk-line); border-radius: 50%; background: var(--kk-surface); color: var(--kk-text); cursor: pointer; }
.kk-slider-dots { display: flex; gap: 7px; }
.kk-slider-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 30px; background: var(--kk-line); cursor: pointer; transition: width .2s ease, background .2s ease; }
.kk-slider-dots button.is-active { width: 28px; background: var(--kk-primary); }
.kk-home-hero-visual { position: relative; min-height: 460px; display: grid; place-items: center; }
.kk-visual-orbit { position: absolute; width: 450px; height: 450px; border: 1px dashed color-mix(in srgb, var(--kk-blue) 28%, transparent); border-radius: 50%; animation: kkSpin 24s linear infinite; }
.kk-visual-orbit::before, .kk-visual-orbit::after { position: absolute; width: 17px; height: 17px; content: ""; border-radius: 50%; background: var(--kk-primary); box-shadow: 0 0 0 10px rgba(245,184,0,.12); }
.kk-visual-orbit::before { top: 17%; left: 5%; }
.kk-visual-orbit::after { right: 8%; bottom: 14%; }
.kk-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transform: scale(.97); transition: opacity .38s ease, transform .38s ease; filter: drop-shadow(0 30px 35px rgba(14, 39, 70, .18)); }
.kk-hero-image.is-active { opacity: 1; transform: scale(1); }
.kk-live-card { position: absolute; right: 8px; bottom: 55px; min-width: 180px; padding: 14px 16px; display: grid; grid-template-columns: 13px 1fr; gap: 2px 10px; border: 1px solid rgba(255,255,255,.5); border-radius: 15px; background: color-mix(in srgb, var(--kk-surface) 88%, transparent); box-shadow: var(--kk-shadow); backdrop-filter: blur(12px); }
.kk-live-card > span { width: 10px; height: 10px; margin-top: 5px; border-radius: 50%; background: #18a669; box-shadow: 0 0 0 6px rgba(24,166,105,.12); }
.kk-live-card b { font-size: 13px; }
.kk-live-card small { grid-column: 2; color: var(--kk-muted); }
.kk-trust-strip { position: relative; z-index: 4; margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--kk-line); border-radius: 18px 18px 0 0; background: var(--kk-surface); box-shadow: var(--kk-shadow); overflow: hidden; }
.kk-trust-strip > div { min-height: 100px; padding: 22px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--kk-line); }
.kk-trust-strip > div:last-child { border-right: 0; }
.kk-trust-strip strong { color: var(--kk-blue); font-size: 28px; line-height: 1; }
.kk-trust-strip span { margin-top: 7px; color: var(--kk-muted); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }

.kk-section-head { margin-bottom: 38px; display: grid; grid-template-columns: 1fr minmax(300px, 480px); align-items: end; gap: 42px; }
.kk-section-head h2 { margin: 10px 0 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.08; letter-spacing: -.035em; }
.kk-section-head h2 strong { color: var(--kk-blue); }
.kk-section-head p { margin: 0; color: var(--kk-muted); font-size: 16px; line-height: 1.8; }
.kk-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.kk-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.kk-info-card {
    position: relative;
    min-height: 290px;
    padding: 27px;
    border: 1px solid var(--kk-line);
    border-radius: var(--kk-radius);
    background: var(--kk-surface);
    box-shadow: 0 14px 35px rgba(15,38,67,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.kk-info-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--kk-blue) 35%, var(--kk-line)); box-shadow: var(--kk-shadow); }
.kk-card-icon { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 15px; background: color-mix(in srgb, var(--kk-primary) 17%, var(--kk-surface)); }
.kk-card-icon img { width: 29px; height: 29px; }
.kk-info-card > span { display: block; margin-top: 20px; color: var(--kk-blue); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.kk-info-card h3 { margin: 9px 0 11px; font-size: 21px; line-height: 1.25; }
.kk-info-card p { margin: 0; color: var(--kk-muted); font-size: 14px; line-height: 1.75; }
.kk-info-card > a { position: absolute; left: 27px; bottom: 24px; color: var(--kk-blue); font-size: 13px; font-weight: 850; text-decoration: none; }
.kk-info-card > a b { color: var(--kk-primary); }
.kk-centered-action { margin-top: 34px; display: flex; justify-content: center; }

.kk-sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kk-sector-tile { position: relative; min-height: 255px; border-radius: 19px; overflow: hidden; background: #102033; box-shadow: var(--kk-shadow); }
.kk-sector-tile > img { width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: transform .35s ease, opacity .35s ease; }
.kk-sector-tile:hover > img { transform: scale(1.055); opacity: .62; }
.kk-sector-tile::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 35%, rgba(8,21,38,.9)); }
.kk-sector-tile > div { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; display: flex; align-items: center; gap: 12px; color: #fff; }
.kk-sector-tile > div img { width: 31px; filter: brightness(0) invert(1); }
.kk-sector-tile h3 { margin: 0; font-size: 17px; }

.kk-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.kk-process-card { position: relative; min-height: 315px; padding: 26px; border: 1px solid var(--kk-line); border-radius: 18px; background: var(--kk-surface); overflow: hidden; }
.kk-process-number { position: absolute; top: 9px; right: 15px; color: color-mix(in srgb, var(--kk-blue) 13%, transparent); font-size: 67px; font-weight: 950; line-height: 1; }
.kk-process-card h3 { margin: 25px 0 10px; font-size: 20px; }
.kk-process-card p { color: var(--kk-muted); font-size: 14px; line-height: 1.7; }
.kk-process-card > a { position: absolute; left: 26px; bottom: 23px; color: var(--kk-blue); font-size: 13px; font-weight: 850; text-decoration: none; }

.kk-client-band { padding: 52px 0; background: #102033; color: #fff; }
.kk-client-band .kk-eyebrow { color: #fff; }
.kk-client-marquee { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.kk-client-marquee span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 9px; background: rgba(255,255,255,.06); color: #dfe8f4; font-size: 12px; font-weight: 750; }

.kk-dual-cta { min-height: 400px; padding: 48px; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 36px; border-radius: 26px; background: linear-gradient(125deg, #103967, #102033); color: #fff; overflow: hidden; box-shadow: var(--kk-shadow); }
.kk-dual-cta-copy { position: relative; z-index: 2; }
.kk-dual-cta .kk-eyebrow { color: #fff; }
.kk-dual-cta h2 { margin: 15px 0; font-size: clamp(30px, 3.7vw, 48px); line-height: 1.08; }
.kk-dual-cta p { max-width: 630px; color: #cfdae7; font-size: 16px; line-height: 1.75; }
.kk-dual-cta > img { width: 100%; max-height: 330px; object-fit: contain; filter: drop-shadow(0 25px 30px rgba(0,0,0,.22)); }

.kk-page-hero, .kk-detail-hero {
    position: relative;
    padding: 100px 0 82px;
    background:
        radial-gradient(circle at 85% 20%, rgba(245,184,0,.22), transparent 25%),
        linear-gradient(135deg, #102033, #163f6e);
    color: #fff;
    overflow: hidden;
}
.kk-page-hero::after, .kk-detail-hero::after { position: absolute; right: -80px; bottom: -130px; width: 380px; height: 380px; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.03), 0 0 0 100px rgba(255,255,255,.02); }
.kk-page-hero .kk-eyebrow, .kk-detail-hero .kk-eyebrow { color: #fff; }
.kk-page-hero h1 { max-width: 900px; margin: 18px 0; font-size: clamp(42px, 5.8vw, 70px); line-height: 1.02; letter-spacing: -.045em; }
.kk-page-hero h1 strong { color: var(--kk-primary); }
.kk-page-hero p { max-width: 750px; margin: 0; color: #d7e2ef; font-size: 18px; line-height: 1.75; }
.kk-detail-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 52px; }
.kk-detail-hero h1 { margin: 16px 0; font-size: clamp(42px, 5vw, 66px); line-height: 1.03; letter-spacing: -.04em; }
.kk-detail-hero p { max-width: 680px; color: #d7e2ef; font-size: 18px; line-height: 1.75; }
.kk-detail-hero-grid > img { width: 100%; max-height: 390px; object-fit: contain; border-radius: 22px; filter: drop-shadow(0 25px 35px rgba(0,0,0,.28)); }

.kk-listing-grid { display: grid; gap: 17px; }
.kk-service-list-card { padding: 26px; display: grid; grid-template-columns: 68px 1fr auto; align-items: center; gap: 24px; border: 1px solid var(--kk-line); border-radius: 18px; background: var(--kk-surface); transition: transform .2s ease, border-color .2s ease; }
.kk-service-list-card:hover { transform: translateX(6px); border-color: var(--kk-blue); }
.kk-service-list-card h2 { margin: 4px 0 7px; font-size: 24px; }
.kk-service-list-card span { color: var(--kk-blue); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.kk-service-list-card p { margin: 0; color: var(--kk-muted); }
.kk-service-list-card > a { color: var(--kk-blue); font-size: 13px; font-weight: 850; text-decoration: none; white-space: nowrap; }
.kk-empty-state { padding: 32px; border: 1px dashed var(--kk-line); border-radius: 16px; color: var(--kk-muted); text-align: center; }

.kk-content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 48px; }
.kk-content-narrow { max-width: 920px; }
.kk-rich-content { color: var(--kk-text); font-size: 17px; line-height: 1.85; }
.kk-rich-content h2 { margin: 36px 0 12px; font-size: 30px; line-height: 1.2; }
.kk-rich-content h3 { margin: 28px 0 10px; font-size: 23px; }
.kk-rich-content p { margin: 0 0 18px; }
.kk-rich-content ul, .kk-rich-content ol { margin: 0 0 22px; padding-left: 24px; }
.kk-rich-content a { color: var(--kk-blue); }
.kk-rich-content img { margin: 24px 0; border-radius: 16px; }
.kk-side-panel { position: sticky; top: 110px; padding: 25px; border: 1px solid var(--kk-line); border-radius: 18px; background: var(--kk-surface); box-shadow: var(--kk-shadow); }
.kk-side-panel h3 { margin: 0 0 10px; font-size: 22px; }
.kk-side-panel p { color: var(--kk-muted); }
.kk-side-panel > a:not(.kk-btn) { display: block; margin: 18px 0; color: var(--kk-blue); font-weight: 850; text-decoration: none; }
.kk-side-panel .kk-btn { width: 100%; }
.kk-page-image img { width: 100%; border-radius: 20px; box-shadow: var(--kk-shadow); }
.kk-feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.kk-feature-list article { padding: 23px; display: flex; gap: 15px; border: 1px solid var(--kk-line); border-radius: 16px; background: var(--kk-surface); }
.kk-feature-list article > b { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(245,184,0,.18); color: #8a6500; }
.kk-feature-list h3 { margin: 0 0 6px; font-size: 17px; }
.kk-feature-list p { margin: 0; color: var(--kk-muted); font-size: 14px; }

.kk-process-timeline { position: relative; display: grid; gap: 20px; }
.kk-process-timeline::before { position: absolute; top: 0; bottom: 0; left: 44px; width: 2px; content: ""; background: var(--kk-line); }
.kk-timeline-item { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 24px; }
.kk-timeline-item > span { position: relative; z-index: 2; width: 88px; height: 88px; display: grid; place-items: center; border: 7px solid var(--kk-bg); border-radius: 50%; background: var(--kk-primary); color: #172033; font-size: 22px; font-weight: 950; }
.kk-timeline-item > div { padding: 25px; border: 1px solid var(--kk-line); border-radius: 17px; background: var(--kk-surface); }
.kk-timeline-item small { color: var(--kk-blue); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.kk-timeline-item h2 { margin: 6px 0 8px; font-size: 25px; }
.kk-timeline-item p { margin: 0 0 12px; color: var(--kk-muted); }
.kk-timeline-item a { color: var(--kk-blue); font-weight: 850; text-decoration: none; }
.kk-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kk-step-grid article { padding: 25px; border: 1px solid var(--kk-line); border-radius: 17px; background: var(--kk-surface); }
.kk-step-grid article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--kk-primary); color: #172033; font-weight: 950; }
.kk-step-grid h3 { margin: 17px 0 8px; }
.kk-step-grid p { margin: 0; color: var(--kk-muted); }

.kk-inline-cta { padding: 37px 40px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; border-radius: 20px; background: linear-gradient(120deg, #102033, #164c86); color: #fff; box-shadow: var(--kk-shadow); }
.kk-inline-cta .kk-eyebrow { color: #fff; }
.kk-inline-cta h2 { margin: 10px 0 7px; font-size: 30px; }
.kk-inline-cta p { margin: 0; color: #cfdae7; }
.kk-inline-cta > div:last-child { display: flex; gap: 10px; }

.kk-contact-layout, .kk-quote-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 36px; }
.kk-contact-info, .kk-quote-benefits { padding: 31px; border-radius: 20px; background: linear-gradient(140deg, #102033, #174d86); color: #fff; box-shadow: var(--kk-shadow); }
.kk-contact-info h2, .kk-quote-benefits h2 { margin: 12px 0 8px; font-size: 33px; line-height: 1.15; }
.kk-contact-info > p, .kk-quote-benefits > p { color: #d4dfeb; }
.kk-contact-info > a:not(.kk-btn), .kk-contact-info > div { margin-top: 18px; padding: 15px 0; display: grid; gap: 4px; border-bottom: 1px solid rgba(255,255,255,.14); color: #fff; text-decoration: none; }
.kk-contact-info b { color: var(--kk-primary); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.kk-contact-info span { color: #e4ebf3; }
.kk-contact-info .kk-btn { border-bottom: 0; display: inline-flex; }
.kk-quote-benefits ul { margin: 24px 0; padding: 0; list-style: none; }
.kk-quote-benefits li { position: relative; padding: 11px 0 11px 30px; border-bottom: 1px solid rgba(255,255,255,.12); color: #e1e9f2; }
.kk-quote-benefits li::before { position: absolute; left: 0; content: "✓"; color: var(--kk-primary); font-weight: 900; }
.kk-quote-contact { display: grid; gap: 8px; }
.kk-quote-contact a { color: #fff; font-weight: 800; text-decoration: none; }
.kk-public-form { padding: 32px; border: 1px solid var(--kk-line); border-radius: 20px; background: var(--kk-surface); box-shadow: var(--kk-shadow); }
.kk-form-head h2 { margin: 8px 0 25px; font-size: 30px; }
.kk-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.kk-form-grid label { display: grid; gap: 7px; }
.kk-form-grid label > span { color: var(--kk-text); font-size: 12px; font-weight: 800; }
.kk-form-grid input:not([type="checkbox"]), .kk-form-grid select, .kk-form-grid textarea { width: 100%; border: 1px solid var(--kk-line); border-radius: 10px; background: var(--kk-bg); color: var(--kk-text); outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.kk-form-grid input:not([type="checkbox"]), .kk-form-grid select { min-height: 48px; padding: 0 13px; }
.kk-form-grid textarea { padding: 12px 13px; resize: vertical; }
.kk-form-grid input:focus, .kk-form-grid select:focus, .kk-form-grid textarea:focus { border-color: var(--kk-blue); box-shadow: 0 0 0 4px color-mix(in srgb, var(--kk-blue) 12%, transparent); }
.kk-col-full { grid-column: 1 / -1; }
.kk-check { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; }
.kk-check input { margin-top: 3px; }
.kk-check span { color: var(--kk-muted) !important; font-weight: 600 !important; line-height: 1.5; }
.kk-public-form > .kk-btn { margin-top: 23px; width: 100%; }
.kk-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.kk-map-section { margin-bottom: 90px; min-height: 390px; border-radius: 20px; overflow: hidden; box-shadow: var(--kk-shadow); }
.kk-map-section iframe { width: 100%; height: 430px; border: 0; }

.kk-footer { margin-top: 30px; background: #0d1c2e; color: #d4deea; }
.kk-footer-grid { padding-block: 66px; display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 36px; }
.kk-footer-brand img { width: 180px; max-height: 70px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.kk-footer-brand p { max-width: 320px; color: #aebdcd; font-size: 14px; line-height: 1.75; }
.kk-social-row { display: flex; gap: 8px; }
.kk-social-row a { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; color: #fff; font-size: 11px; font-weight: 900; text-decoration: none; }
.kk-social-row a:hover { border-color: var(--kk-primary); color: var(--kk-primary); }
.kk-footer-column { display: flex; flex-direction: column; gap: 10px; }
.kk-footer-column h3 { margin: 0 0 8px; color: #fff; font-size: 15px; }
.kk-footer-column a, .kk-footer-column span { color: #aebdcd; font-size: 13px; text-decoration: none; line-height: 1.55; }
.kk-footer-column a:hover { color: var(--kk-primary); }
.kk-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.kk-footer-bottom-inner { min-height: 64px; display: flex; justify-content: space-between; align-items: center; gap: 24px; color: #8fa0b4; font-size: 12px; }
.kk-legal-links { display: flex; gap: 15px; flex-wrap: wrap; }
.kk-legal-links a { color: #aebdcd; text-decoration: none; }
.kk-legal-links a:hover { color: var(--kk-primary); }

.kk-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.kk-reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes kkFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kkSpin { to { transform: rotate(360deg); } }

@media (max-width: 1120px) {
    .kk-header-inner { grid-template-columns: 165px 1fr auto; gap: 14px; }
    .kk-main-nav { gap: 0; }
    .kk-nav-entry > a { padding-inline: 9px; font-size: 13px; }
    .kk-header-actions .kk-btn-ghost { display: none; }
    .kk-process-grid { grid-template-columns: repeat(2, 1fr); }
    .kk-footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
    .kk-footer-column:nth-child(4), .kk-footer-column:nth-child(5) { margin-top: 10px; }
}

@media (max-width: 900px) {
    .kk-topbar-right { display: none; }
    .kk-header-inner { min-height: 72px; grid-template-columns: 150px 1fr auto; }
    .kk-menu-toggle { display: block; justify-self: end; }
    .kk-main-nav {
        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;
        max-height: calc(100vh - 100px);
        padding: 14px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        border: 1px solid var(--kk-line);
        border-radius: 15px;
        background: var(--kk-surface);
        box-shadow: var(--kk-shadow);
        overflow: auto;
    }
    .kk-main-nav.is-open { display: flex; }
    .kk-nav-entry > a { justify-content: space-between; padding-inline: 13px; }
    .kk-dropdown { position: static; min-width: 0; padding: 4px 0 4px 15px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
    .kk-dropdown a { padding-block: 8px; }
    .kk-header-actions .kk-btn-primary { display: none; }
    .kk-home-hero { padding-top: 50px; }
    .kk-home-hero-grid, .kk-detail-hero-grid { grid-template-columns: 1fr; }
    .kk-home-hero-grid { min-height: 0; }
    .kk-home-hero-visual { min-height: 390px; }
    .kk-section-head { grid-template-columns: 1fr; gap: 14px; }
    .kk-service-grid, .kk-card-grid { grid-template-columns: repeat(2, 1fr); }
    .kk-sector-grid { grid-template-columns: repeat(2, 1fr); }
    .kk-dual-cta { grid-template-columns: 1fr; padding: 38px; }
    .kk-content-layout { grid-template-columns: 1fr; }
    .kk-side-panel { position: static; }
    .kk-contact-layout, .kk-quote-layout { grid-template-columns: 1fr; }
    .kk-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .kk-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .kk-container { width: min(calc(100% - 24px), var(--kk-container)); }
    .kk-topbar-left { gap: 10px; }
    .kk-topbar-left span, .kk-topbar-left a:nth-child(2) { display: none; }
    .kk-header-inner { grid-template-columns: 145px 1fr auto; }
    .kk-theme-toggle { width: 40px; height: 40px; }
    .kk-section, .kk-section-soft { padding-block: 68px; }
    .kk-hero-slide h1 { font-size: 42px; }
    .kk-hero-slide p { font-size: 16px; }
    .kk-home-hero-visual { min-height: 310px; }
    .kk-visual-orbit { width: 300px; height: 300px; }
    .kk-live-card { right: 0; bottom: 20px; }
    .kk-trust-strip { grid-template-columns: repeat(2, 1fr); }
    .kk-trust-strip > div:nth-child(2) { border-right: 0; }
    .kk-trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--kk-line); }
    .kk-service-grid, .kk-card-grid, .kk-sector-grid, .kk-process-grid, .kk-feature-list, .kk-step-grid { grid-template-columns: 1fr; }
    .kk-service-list-card { grid-template-columns: 55px 1fr; }
    .kk-service-list-card > a { grid-column: 2; }
    .kk-page-hero, .kk-detail-hero { padding: 70px 0 58px; }
    .kk-page-hero h1, .kk-detail-hero h1 { font-size: 41px; }
    .kk-inline-cta { grid-template-columns: 1fr; padding: 28px; }
    .kk-inline-cta > div:last-child { flex-direction: column; }
    .kk-form-grid { grid-template-columns: 1fr; }
    .kk-col-full { grid-column: auto; }
    .kk-public-form { padding: 23px; }
    .kk-footer-grid { grid-template-columns: 1fr; }
    .kk-footer-brand { grid-column: auto; }
    .kk-footer-bottom-inner { padding-block: 17px; flex-direction: column; align-items: flex-start; }
    .kk-timeline-item { grid-template-columns: 64px 1fr; gap: 12px; }
    .kk-process-timeline::before { left: 31px; }
    .kk-timeline-item > span { width: 64px; height: 64px; border-width: 5px; font-size: 17px; }
}

/* ======================================================================
   Public CMS v1.1.2 — Mega menü + ortak footer düzeltmesi
   ====================================================================== */

@media (min-width: 901px) {
    .kk-header-inner {
        position: relative;
    }

    .kk-main-nav {
        position: static;
    }

    .kk-nav-entry-mega {
        position: static;
    }

    .kk-dropdown.kk-mega-menu {
        left: 50%;
        top: calc(100% + 12px);
        width: min(1260px, calc(100vw - 48px));
        min-width: 0;
        padding: 16px;
        display: grid;
        grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
        gap: 14px;
        border: 1px solid rgba(85, 174, 255, .24);
        border-radius: 22px;
        background: linear-gradient(135deg, #06284d 0%, #063967 52%, #07345d 100%);
        box-shadow: 0 30px 70px rgba(3, 24, 53, .30);
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 13px);
        overflow: hidden;
        z-index: 90;
    }

    .kk-dropdown.kk-mega-menu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -15px;
        height: 15px;
    }

    .kk-nav-entry-mega:hover .kk-mega-menu,
    .kk-nav-entry-mega:focus-within .kk-mega-menu,
    .kk-nav-entry-mega.is-open .kk-mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }
}

.kk-mega-promo {
    min-height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(111, 197, 255, .26);
    border-radius: 17px;
    background:
        radial-gradient(circle at 15% 10%, rgba(40, 177, 255, .20), transparent 35%),
        linear-gradient(145deg, rgba(8, 76, 133, .96), rgba(4, 45, 84, .96));
    color: #fff;
}

.kk-mega-promo > span {
    color: #55d7ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.kk-mega-promo h3 {
    margin: 15px 0 13px;
    color: #fff;
    font-size: clamp(25px, 2.2vw, 37px);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.kk-mega-promo h3 em {
    display: block;
    color: #51d5ff;
    font-style: italic;
}

.kk-mega-promo p {
    margin: 0;
    color: #c9dced;
    font-size: 13.5px;
    line-height: 1.55;
}

.kk-dropdown .kk-mega-button {
    width: fit-content;
    min-height: 43px;
    margin-top: 23px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 11px;
    background: #0879ff;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 13px 27px rgba(0, 106, 255, .25);
}

.kk-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-content: start;
}

.kk-dropdown .kk-mega-card {
    position: relative;
    min-height: 90px;
    padding: 15px 43px 15px 58px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(105, 180, 244, .20);
    border-radius: 14px;
    background: rgba(3, 37, 71, .64);
    color: #fff;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.kk-dropdown .kk-mega-card:hover {
    border-color: rgba(82, 206, 255, .58);
    background: rgba(7, 64, 111, .92);
    color: #fff;
    transform: translateY(-2px);
}

.kk-mega-index {
    position: absolute;
    left: 16px;
    color: #50d7ff;
    font-size: 12px;
    font-weight: 950;
}

.kk-mega-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.kk-mega-copy strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}

.kk-mega-copy small {
    display: -webkit-box;
    overflow: hidden;
    color: #afc7da;
    font-size: 12px;
    font-weight: 550;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kk-mega-arrow {
    position: absolute;
    right: 16px;
    color: #fff;
    font-size: 15px;
}

.kk-footer {
    margin-top: 30px;
    border-top: 1px solid var(--kk-line);
    background: var(--kk-surface);
    color: var(--kk-text);
}

.kk-footer-grid {
    padding-block: 40px 44px;
    grid-template-columns: 1.65fr 1fr 1.25fr 1fr 1.25fr;
    gap: 38px;
}

.kk-footer-brand img {
    width: 235px;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
    filter: none;
}

.kk-footer-brand p {
    max-width: 360px;
    margin: 12px 0 18px;
    color: var(--kk-muted);
    font-size: 13px;
    line-height: 1.7;
}

.kk-social-row a {
    border: 0;
    border-radius: 50%;
    background: #0648f7;
    color: #fff;
}

.kk-social-row a:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.kk-footer-column {
    min-width: 0;
    gap: 7px;
}

.kk-footer-column h3 {
    margin: 2px 0 11px;
    color: var(--kk-text);
    font-size: 15px;
}

.kk-footer-column a,
.kk-footer-column span {
    color: var(--kk-muted);
    font-size: 13px;
    line-height: 1.55;
}

.kk-footer-column a:hover {
    color: #0648f7;
}

.kk-footer-bottom {
    border: 0;
    background: #0648f7;
}

.kk-footer-bottom-inner {
    min-height: 58px;
    color: #fff;
}

.kk-footer-copyright {
    color: #fff;
}

.kk-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.kk-footer-bottom .kk-legal-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.88);
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}

.kk-footer-bottom .kk-legal-links a + a {
    margin-left: 15px;
    padding-left: 16px;
}

.kk-footer-bottom .kk-legal-links a + a::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,.56);
}

.kk-footer-bottom .kk-legal-links a:hover {
    color: #fff;
}

@media (max-width: 1120px) and (min-width: 901px) {
    .kk-dropdown.kk-mega-menu {
        grid-template-columns: 275px minmax(0, 1fr);
    }

    .kk-mega-promo {
        padding: 23px;
    }

    .kk-footer-grid {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .kk-nav-entry-mega > a {
        justify-content: space-between;
    }

    .kk-nav-entry-mega > a .kk-chevron {
        margin-left: auto;
    }

    .kk-nav-entry-mega.is-open > a .kk-chevron {
        transform: rotate(180deg);
    }

    .kk-dropdown.kk-mega-menu,
    .kk-nav-entry:hover .kk-dropdown,
    .kk-nav-entry:focus-within .kk-dropdown {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 0 0 8px;
        padding: 9px;
        display: none;
        grid-template-columns: 1fr;
        gap: 9px;
        border-radius: 14px;
        background: #07345f;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .kk-nav-entry-mega.is-open .kk-mega-menu {
        display: grid;
    }

    .kk-mega-promo {
        min-height: auto;
        padding: 19px;
    }

    .kk-mega-promo h3 {
        font-size: 25px;
    }

    .kk-mega-grid {
        grid-template-columns: 1fr;
    }

    .kk-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kk-footer-bottom-inner {
        min-height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .kk-legal-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .kk-mega-promo p,
    .kk-mega-copy small {
        display: none;
    }

    .kk-mega-promo h3 {
        margin-bottom: 0;
        font-size: 22px;
    }

    .kk-dropdown .kk-mega-button {
        width: 100%;
        justify-content: center;
    }

    .kk-footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .kk-footer-bottom .kk-legal-links a,
    .kk-footer-bottom .kk-legal-links a + a {
        margin: 0 12px 6px 0;
        padding: 0;
    }

    .kk-footer-bottom .kk-legal-links a + a::before {
        display: none;
    }
}

/* Landing home v1.1.4 */
.kk-home-hero {
    padding: 0;
    overflow: hidden;
    background: linear-gradient(100deg, #ffffff 0%, #f6f9ff 43%, #eaf2ff 100%);
}

html[data-theme="dark"] .kk-home-hero {
    background: linear-gradient(100deg, #0c1118 0%, #111b2a 45%, #112a4a 100%);
}

.kk-home-hero .kk-container {
    width: 100%;
    max-width: none;
    padding-right: clamp(24px, 4vw, 74px);
    padding-left: clamp(24px, 4vw, 74px);
}

.kk-home-hero-grid {
    min-height: clamp(600px, 72vh, 760px);
    grid-template-columns: minmax(410px, .78fr) minmax(0, 1.22fr);
    gap: clamp(24px, 4vw, 70px);
}

.kk-home-hero-copy {
    max-width: 720px;
    padding-block: 74px 34px;
}

.kk-hero-slide h1 {
    margin: 16px 0 20px;
    max-width: 760px;
    font-size: clamp(46px, 5vw, 82px);
    line-height: 1.03;
    letter-spacing: 0;
}

.kk-hero-slide p {
    max-width: 690px;
    font-size: clamp(16px, 1vw, 19px);
    line-height: 1.72;
}

.kk-home-hero-visual {
    align-self: stretch;
    min-height: 560px;
}

.kk-home-hero-visual::before {
    position: absolute;
    inset: 0 -74px 0 -28px;
    content: "";
    background: linear-gradient(90deg, rgba(255,255,255,.72), transparent 18%);
    pointer-events: none;
    z-index: 2;
}

html[data-theme="dark"] .kk-home-hero-visual::before {
    background: linear-gradient(90deg, rgba(12,17,24,.78), transparent 18%);
}

.kk-hero-image {
    object-fit: cover;
    object-position: center;
    filter: none;
}

.kk-hero-actions {
    align-items: center;
}

.kk-slider-controls > button {
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 900;
}

.kk-trust-strip {
    width: min(720px, calc(100% - 48px));
    margin: -142px auto 0 clamp(24px, 4vw, 74px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(13, 61, 128, .11);
}

.kk-trust-strip > div {
    min-height: 86px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 2px 10px;
}

.kk-trust-strip img {
    width: 28px;
    height: 28px;
    grid-row: span 2;
}

.kk-trust-strip strong {
    font-size: 16px;
}

.kk-trust-strip span {
    margin: 0;
    font-size: 11px;
}

.kk-feature-ribbon {
    margin-top: -24px;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.kk-feature-ribbon .kk-info-card {
    min-height: 210px;
    padding: 22px 18px;
    border-radius: 10px;
}

.kk-feature-ribbon .kk-card-icon {
    width: 52px;
    height: 52px;
    margin-inline: auto;
    border-radius: 50%;
}

.kk-feature-ribbon .kk-info-card h3 {
    margin: 16px 0 8px;
    min-height: 42px;
    font-size: 16px;
    line-height: 1.28;
    text-align: center;
}

.kk-feature-ribbon .kk-info-card p {
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.kk-feature-ribbon .kk-info-card > a {
    right: 16px;
    bottom: 14px;
    left: auto;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--kk-line);
    border-radius: 50%;
    background: var(--kk-surface);
}

.kk-sector-layout,
.kk-process-layout {
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.kk-section-side h2 {
    margin: 10px 0 15px;
    font-size: clamp(25px, 2.3vw, 38px);
    line-height: 1.14;
}

.kk-section-side h2 strong {
    display: block;
    color: var(--kk-blue);
}

.kk-section-side p {
    color: var(--kk-muted);
    font-size: 14px;
    line-height: 1.75;
}

.kk-sector-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.kk-sector-tile {
    min-height: 215px;
    border-radius: 9px;
}

.kk-sector-tile > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.kk-sector-tile h3 {
    font-size: 15px;
}

.kk-process-layout {
    align-items: start;
}

.kk-process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
}

.kk-process-line::before {
    position: absolute;
    top: 44px;
    right: 7%;
    left: 7%;
    height: 2px;
    content: "";
    border-top: 2px dashed color-mix(in srgb, var(--kk-blue) 24%, var(--kk-line));
}

.kk-process-step {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.kk-process-step .kk-card-icon {
    margin-inline: auto;
    border-radius: 50%;
    background: color-mix(in srgb, var(--kk-blue) 12%, var(--kk-surface));
}

.kk-process-step strong {
    display: block;
    margin-top: 12px;
    color: var(--kk-blue);
    font-size: 18px;
    line-height: 1;
}

.kk-process-step h3 {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.25;
}

.kk-process-step p {
    margin: 0;
    color: var(--kk-muted);
    font-size: 11px;
    line-height: 1.45;
}

@media (max-width: 1180px) {
    .kk-feature-ribbon {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .kk-sector-layout,
    .kk-process-layout {
        grid-template-columns: 1fr;
    }

    .kk-sector-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kk-process-line {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .kk-home-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .kk-home-hero-copy {
        padding-block: 54px 0;
    }

    .kk-home-hero-visual {
        min-height: 420px;
        margin-inline: -24px;
    }

    .kk-trust-strip {
        width: min(calc(100% - 32px), 720px);
        margin: -20px auto 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .kk-hero-slide h1 {
        font-size: 42px;
    }

    .kk-hero-actions .kk-btn {
        width: 100%;
    }

    .kk-home-hero-visual {
        min-height: 315px;
    }

    .kk-feature-ribbon,
    .kk-sector-grid,
    .kk-process-line {
        grid-template-columns: 1fr;
    }

    .kk-process-line::before {
        display: none;
    }
}
/* Public ana sayfa etkileşimleri: masaüstünde derinlik, dokunmatik cihazlarda sakin görünüm. */
@media (hover: hover) and (pointer: fine) {
    .kk-feature-ribbon .kk-info-card {
        isolation: isolate;
        transition: transform .28s cubic-bezier(.2,.75,.25,1), border-color .28s ease, box-shadow .28s ease, background-color .28s ease;
    }

    .kk-feature-ribbon .kk-info-card::before {
        position: absolute;
        z-index: -1;
        inset: 18% 12% -7%;
        content: "";
        border-radius: 22px;
        background: color-mix(in srgb, var(--kk-blue) 22%, transparent);
        filter: blur(24px);
        opacity: 0;
        transition: opacity .28s ease, transform .28s ease;
        transform: translateY(8px) scale(.92);
    }

    .kk-feature-ribbon .kk-info-card:hover {
        transform: translateY(-9px);
        border-color: color-mix(in srgb, var(--kk-blue) 55%, var(--kk-line));
        background: color-mix(in srgb, var(--kk-blue) 3%, var(--kk-surface));
        box-shadow: 0 22px 48px rgba(10, 73, 171, .18), 0 8px 18px rgba(11, 40, 90, .08);
    }

    .kk-feature-ribbon .kk-info-card:hover::before { opacity: .72; transform: translateY(0) scale(1); }
    .kk-feature-ribbon .kk-card-icon { transition: transform .28s ease, background-color .28s ease, box-shadow .28s ease; }
    .kk-feature-ribbon .kk-card-icon img { transition: transform .28s ease, filter .28s ease; }
    .kk-feature-ribbon .kk-info-card:hover .kk-card-icon { transform: translateY(-3px) scale(1.08); background:#075ff2; box-shadow:0 10px 24px rgba(7,95,242,.28); }
    .kk-feature-ribbon .kk-info-card:hover .kk-card-icon img { transform:scale(1.06); filter:brightness(0) invert(1); }
    .kk-feature-ribbon .kk-info-card > a { transition: transform .24s ease, background-color .24s ease, color .24s ease, box-shadow .24s ease; }
    .kk-feature-ribbon .kk-info-card:hover > a { transform:translateX(3px); border-color:#075ff2; background:#075ff2; color:#fff; box-shadow:0 8px 18px rgba(7,95,242,.25); }

    .kk-sector-tile { transition: transform .3s cubic-bezier(.2,.75,.25,1), box-shadow .3s ease; }
    .kk-sector-tile:hover { transform:translateY(-8px); box-shadow:0 24px 48px rgba(8,48,112,.24); }
    .kk-sector-tile:hover > img { transform:scale(1.075); opacity:.72; }
    .kk-sector-tile > div { transition:transform .3s ease; }
    .kk-sector-tile:hover > div { transform:translateY(-5px); }

    .kk-process-step { padding:10px 6px 14px; border-radius:16px; transition:transform .26s ease, background-color .26s ease, box-shadow .26s ease; }
    .kk-process-step:hover { transform:translateY(-6px); background:color-mix(in srgb,var(--kk-blue) 6%,var(--kk-surface)); box-shadow:0 16px 34px rgba(10,73,171,.12); }
    .kk-process-step .kk-card-icon { transition:transform .26s ease, background-color .26s ease, box-shadow .26s ease; }
    .kk-process-step:hover .kk-card-icon { transform:scale(1.12); background:#075ff2; box-shadow:0 10px 24px rgba(7,95,242,.25); }
    .kk-process-step:hover .kk-card-icon img { filter:brightness(0) invert(1); }

    main .kk-btn { transition:transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease; }
    main .kk-btn-primary:hover { transform:translateY(-3px); background:#075ff2; color:#fff; box-shadow:0 16px 30px rgba(7,95,242,.3); }
    main .kk-btn-ghost:hover { transform:translateY(-3px); border-color:#075ff2; background:#075ff2; color:#fff; box-shadow:0 14px 28px rgba(7,95,242,.22); }
    main .kk-btn-light:hover { transform:translateY(-3px); border-color:#fff; background:#fff; color:#0b3a78; box-shadow:0 14px 28px rgba(0,0,0,.15); }
}

.kk-feature-ribbon .kk-info-card:focus-within,
.kk-sector-tile:focus-within,
.kk-process-step:focus-within { outline:3px solid color-mix(in srgb,var(--kk-blue) 38%,transparent); outline-offset:3px; }

@media (prefers-reduced-motion: reduce) {
    .kk-feature-ribbon .kk-info-card,
    .kk-feature-ribbon .kk-card-icon,
    .kk-sector-tile,
    .kk-sector-tile > img,
    .kk-process-step,
    .kk-process-step .kk-card-icon,
    main .kk-btn { transition:none !important; transform:none !important; }
}
