@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-extrabold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/jetbrainsmono-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #374151;
    background-color: #F8F9FC;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #0D1224;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 0;
}

a {
    color: #5B4FE9;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #4741C7;
}

.kw-accent {
    color: #5B4FE9;
}

.kw-secondary {
    color: #0EA5E9;
}

.kw-bg-base {
    background-color: #F8F9FC;
}

.kw-bg-alt {
    background-color: #EEF1F8;
}

.kw-bg-dark {
    background-color: #0D1224;
}

.kw-section {
    padding: 96px 0;
}

.kw-section-hero {
    padding: 140px 0 120px;
}

.kw-section-hero-sub {
    padding: 120px 0 80px;
}

.kw-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5B4FE9;
    margin-bottom: 16px;
}

.kw-eyebrow-dark {
    color: #8899B8;
}

.kw-section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0D1224;
    margin-bottom: 64px;
}

.kw-section-title-dark {
    color: #F0F4FF;
}

.kw-section-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 64px;
}

.kw-section-subtitle-dark {
    color: #C7D2E8;
}

.kw-title-block {
    margin-bottom: 64px;
}

.kw-btn-primary {
    display: inline-block;
    background-color: #5B4FE9;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-decoration: none;
}

.kw-btn-primary:hover {
    background-color: #4741C7;
    color: #FFFFFF;
    text-decoration: none;
}

.kw-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #5B4FE9;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid #5B4FE9;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.kw-btn-outline:hover {
    background-color: rgba(91,79,233,0.10);
    color: #4741C7;
    text-decoration: none;
}

.kw-btn-outline-light {
    display: inline-block;
    background-color: transparent;
    color: #F0F4FF;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid rgba(240,244,255,0.35);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.kw-btn-outline-light:hover {
    background-color: rgba(240,244,255,0.10);
    color: #FFFFFF;
    text-decoration: none;
}

.kw-btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.kw-site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.kw-site-nav.nav-scrolled {
    background-color: #0D1224;
    box-shadow: 0 2px 20px rgba(13,18,36,0.4);
}

.kw-site-nav.nav-solid {
    background-color: #0D1224;
}

.kw-site-nav .navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: #F0F4FF;
    letter-spacing: -0.01em;
}

.kw-site-nav .navbar-brand:hover {
    color: #FFFFFF;
}

.kw-site-nav .navbar-brand span {
    color: #5B4FE9;
}

.kw-site-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #C7D2E8;
    padding: 8px 14px;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.kw-site-nav .nav-link:hover,
.kw-site-nav .nav-link.active {
    color: #FFFFFF;
}

.kw-site-nav .navbar-toggler {
    border: 1px solid rgba(240,244,255,0.3);
    padding: 6px 10px;
}

.kw-site-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240%2C 244%2C 255%2C 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.kw-hero {
    position: relative;
    background-color: #0D1224;
    overflow: hidden;
    padding-top: 204px;
    padding-bottom: 120px;
}

.kw-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,79,233,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.kw-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.kw-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kw-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(13,18,36,0.78);
}

.kw-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.kw-hero-badge {
    display: inline-block;
    background-color: rgba(91,79,233,0.18);
    color: #A89EF5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(91,79,233,0.35);
    margin-bottom: 28px;
}

.kw-hero-h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #F0F4FF;
    margin-bottom: 24px;
}

.kw-hero-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #C7D2E8;
    max-width: 620px;
    margin: 0 auto 40px;
}

.kw-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.kw-hero-sub-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F0F4FF;
    margin-bottom: 20px;
}

.kw-hero-sub-cta {
    padding: 120px 0 80px;
}

.kw-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.kw-social-proof-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #8899B8;
    text-transform: uppercase;
    margin-right: 8px;
}

.kw-social-proof-logo {
    background-color: rgba(240,244,255,0.08);
    border: 1px solid rgba(240,244,255,0.12);
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #8899B8;
    letter-spacing: 0.02em;
}

.kw-stats-bar {
    background-color: #F8F9FC;
    padding: 60px 0;
    border-bottom: 1px solid #DDE3F0;
}

.kw-stat-item {
    text-align: center;
    padding: 20px;
}

.kw-stat-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #5B4FE9;
    display: block;
    margin-bottom: 8px;
}

.kw-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    line-height: 1.4;
}

.kw-stat-icon {
    font-size: 22px;
    margin-bottom: 12px;
    display: block;
}

.kw-feature-card {
    background-color: #FFFFFF;
    border: 1px solid #DDE3F0;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(13,18,36,0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.kw-feature-card:hover {
    box-shadow: 0 8px 28px rgba(13,18,36,0.13);
    transform: translateY(-3px);
}

.kw-feature-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(91,79,233,0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #5B4FE9;
}

.kw-feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #0D1224;
    margin-bottom: 12px;
}

.kw-feature-card p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
}

.kw-how-it-works {
    padding: 96px 0;
}

.kw-steps-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.kw-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.kw-step-connector {
    position: absolute;
    top: 32px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: linear-gradient(90deg, #5B4FE9, rgba(91,79,233,0.2));
    z-index: 0;
}

.kw-step:last-child .kw-step-connector {
    display: none;
}

.kw-step-number {
    width: 64px;
    height: 64px;
    background-color: #5B4FE9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.kw-step h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0D1224;
    margin-bottom: 12px;
}

.kw-step p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.65;
}

.kw-integrations {
    padding: 96px 0;
    background-color: #0D1224;
}

.kw-integration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.kw-integration-badge {
    background-color: #1A2340;
    border: 1px solid #2E3D5C;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #C7D2E8;
    letter-spacing: 0.01em;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.kw-integration-badge:hover {
    border-color: #5B4FE9;
    background-color: rgba(91,79,233,0.12);
    color: #F0F4FF;
}

.kw-integration-note {
    font-size: 14px;
    color: #8899B8;
    text-align: center;
}

.kw-testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid #DDE3F0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(13,18,36,0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kw-testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
}

.kw-testimonial-quote::before {
    content: '\201C';
    font-size: 40px;
    line-height: 0;
    vertical-align: -18px;
    color: #5B4FE9;
    margin-right: 4px;
    font-style: normal;
}

.kw-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kw-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #DDE3F0;
    flex-shrink: 0;
}

.kw-testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #0D1224;
    display: block;
    margin-bottom: 2px;
}

.kw-testimonial-role {
    font-size: 13px;
    color: #6B7280;
}

.kw-pricing-cta-strip {
    background-color: #EEF1F8;
    padding: 80px 0;
    text-align: center;
}

.kw-blog-card {
    background-color: #FFFFFF;
    border: 1px solid #DDE3F0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(13,18,36,0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.kw-blog-card:hover {
    box-shadow: 0 8px 28px rgba(13,18,36,0.13);
    transform: translateY(-3px);
}

.kw-blog-card-img-wrap {
    display: block;
    overflow: hidden;
}

.kw-blog-card-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.kw-blog-card:hover .kw-blog-card-img-wrap img {
    transform: scale(1.04);
}

.kw-blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kw-blog-card-date {
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.kw-blog-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #0D1224;
    margin-bottom: 12px;
}

.kw-blog-card-title a {
    color: #0D1224;
}

.kw-blog-card-title a:hover {
    color: #5B4FE9;
}

.kw-blog-card-excerpt {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
}

.kw-blog-card-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #5B4FE9;
    margin-top: auto;
    padding-top: 16px;
    display: inline-block;
}

.kw-blog-card-read-more:hover {
    color: #4741C7;
}

.kw-cta-banner {
    background-color: #0D1224;
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kw-cta-banner::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(91,79,233,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.kw-site-footer {
    background-color: #0D1224;
    padding: 64px 0 32px;
    border-top: 1px solid #1F2E48;
}

.kw-footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: #F0F4FF;
    display: block;
    margin-bottom: 12px;
}

.kw-footer-brand span {
    color: #5B4FE9;
}

.kw-footer-tagline {
    font-size: 14px;
    color: #8899B8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.kw-footer-social {
    display: flex;
    gap: 12px;
}

.kw-footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(240,244,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8899B8;
    font-size: 15px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.kw-footer-social a:hover {
    background-color: rgba(91,79,233,0.2);
    color: #A89EF5;
}

.kw-footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F0F4FF;
    margin-bottom: 20px;
}

.kw-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kw-footer-links li {
    margin-bottom: 10px;
}

.kw-footer-links a {
    font-size: 14px;
    color: #8899B8;
    transition: color 0.2s ease;
}

.kw-footer-links a:hover {
    color: #C7D2E8;
}

.kw-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.kw-footer-contact-item i {
    font-size: 14px;
    color: #5B4FE9;
    margin-top: 3px;
    flex-shrink: 0;
}

.kw-footer-contact-item span {
    font-size: 14px;
    color: #8899B8;
    line-height: 1.55;
}

.kw-footer-contact-item a {
    font-size: 14px;
    color: #8899B8;
}

.kw-footer-contact-item a:hover {
    color: #C7D2E8;
}

.kw-footer-divider {
    border-top: 1px solid #1F2E48;
    margin: 40px 0 24px;
}

.kw-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.kw-footer-copyright {
    font-size: 13px;
    color: #6B7280;
}

.kw-footer-legal-links {
    display: flex;
    gap: 20px;
}

.kw-footer-legal-links a {
    font-size: 13px;
    color: #6B7280;
}

.kw-footer-legal-links a:hover {
    color: #8899B8;
}

.kw-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #1A2340;
    border-top: 1px solid #2E3D5C;
    padding: 20px 0;
    display: none;
    box-shadow: 0 -4px 24px rgba(13,18,36,0.4);
}

.kw-cookie-banner.show {
    display: block;
}

.kw-cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.kw-cookie-text {
    font-size: 14px;
    color: #C7D2E8;
    line-height: 1.55;
    flex: 1;
    min-width: 240px;
}

.kw-cookie-text a {
    color: #A89EF5;
    text-decoration: underline;
}

.kw-cookie-text a:hover {
    color: #FFFFFF;
}

.kw-cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.kw-cookie-accept {
    background-color: #5B4FE9;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.kw-cookie-accept:hover {
    background-color: #4741C7;
}

.kw-cookie-decline {
    background-color: transparent;
    color: #8899B8;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid #2E3D5C;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.kw-cookie-decline:hover {
    color: #C7D2E8;
    border-color: #4E617E;
}

.kw-zigzag-row {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 80px;
}

.kw-zigzag-row:last-child {
    margin-bottom: 0;
}

.kw-zigzag-row.reverse {
    flex-direction: row-reverse;
}

.kw-zigzag-img {
    flex: 0 0 48%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(13,18,36,0.13);
}

.kw-zigzag-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.kw-zigzag-content {
    flex: 1;
}

.kw-zigzag-content h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #0D1224;
    margin-bottom: 16px;
}

.kw-zigzag-content p {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
}

.kw-zigzag-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.kw-zigzag-content ul li {
    font-size: 15px;
    color: #374151;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.kw-zigzag-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #10B981;
    position: absolute;
    left: 0;
    top: 9px;
}

.kw-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.kw-specs-block h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0D1224;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5B4FE9;
    display: inline-block;
}

.kw-specs-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kw-specs-block ul li {
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #DDE3F0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kw-specs-block ul li i {
    color: #5B4FE9;
    font-size: 13px;
    flex-shrink: 0;
}

.kw-pricing-card {
    background-color: #FFFFFF;
    border: 1px solid #DDE3F0;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(13,18,36,0.07);
    transition: box-shadow 0.25s ease;
}

.kw-pricing-card:hover {
    box-shadow: 0 8px 28px rgba(13,18,36,0.13);
}

.kw-pricing-card.featured {
    border: 2px solid #5B4FE9;
    box-shadow: 0 8px 28px rgba(91,79,233,0.18);
}

.kw-pricing-badge {
    display: inline-block;
    background-color: #5B4FE9;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.kw-pricing-plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #0D1224;
    margin-bottom: 8px;
}

.kw-pricing-desc {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.55;
}

.kw-pricing-price {
    margin-bottom: 28px;
}

.kw-pricing-amount {
    font-size: 52px;
    font-weight: 800;
    color: #0D1224;
    line-height: 1;
    letter-spacing: -0.02em;
}

.kw-pricing-currency {
    font-size: 24px;
    font-weight: 600;
    color: #0D1224;
    vertical-align: super;
    line-height: 1;
}

.kw-pricing-period {
    font-size: 14px;
    color: #6B7280;
    margin-left: 4px;
}

.kw-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.kw-pricing-features li {
    font-size: 14px;
    color: #374151;
    padding: 10px 0;
    border-bottom: 1px solid #DDE3F0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kw-pricing-features li:last-child {
    border-bottom: none;
}

.kw-pricing-features li i.check {
    color: #10B981;
    font-size: 13px;
    flex-shrink: 0;
}

.kw-pricing-features li i.minus {
    color: #6B7280;
    font-size: 13px;
    flex-shrink: 0;
}

.kw-pricing-cta {
    margin-top: auto;
}

.kw-faq-item {
    border-bottom: 1px solid #DDE3F0;
}

.kw-faq-question {
    font-size: 17px;
    font-weight: 600;
    color: #0D1224;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}

.kw-faq-question:hover {
    color: #5B4FE9;
}

.kw-faq-icon {
    font-size: 14px;
    color: #5B4FE9;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.kw-faq-item.open .kw-faq-icon {
    transform: rotate(45deg);
}

.kw-faq-answer {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    padding: 0 0 20px;
    display: none;
}

.kw-faq-item.open .kw-faq-answer {
    display: block;
}

.kw-team-card {
    background-color: #FFFFFF;
    border: 1px solid #DDE3F0;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(13,18,36,0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.25s ease;
}

.kw-team-card:hover {
    box-shadow: 0 8px 28px rgba(13,18,36,0.13);
}

.kw-team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #DDE3F0;
}

.kw-team-name {
    font-size: 18px;
    font-weight: 700;
    color: #0D1224;
    margin-bottom: 4px;
}

.kw-team-title {
    font-size: 14px;
    color: #5B4FE9;
    font-weight: 500;
    margin-bottom: 12px;
}

.kw-team-bio {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.kw-values-card {
    background-color: #1A2340;
    border: 1px solid #2E3D5C;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.kw-values-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #F0F4FF;
    margin-bottom: 12px;
}

.kw-values-card p {
    font-size: 15px;
    color: #C7D2E8;
    line-height: 1.65;
    margin-bottom: 0;
}

.kw-values-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(91,79,233,0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #A89EF5;
}

.kw-contact-form-wrap {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(13,18,36,0.07);
    border: 1px solid #DDE3F0;
}

.kw-contact-info-card {
    background-color: #0D1224;
    border-radius: 12px;
    padding: 40px 36px;
    height: 100%;
}

.kw-contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #F0F4FF;
    margin-bottom: 8px;
}

.kw-contact-info-card p {
    font-size: 15px;
    color: #8899B8;
    margin-bottom: 32px;
}

.kw-form-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.kw-form-control {
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #DDE3F0;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 15px;
    color: #0D1224;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
}

.kw-form-control:focus {
    border: 2px solid #5B4FE9;
    box-shadow: 0 0 0 3px rgba(91,79,233,0.12);
}

.kw-form-control::placeholder {
    color: #9CA3AF;
}

textarea.kw-form-control {
    resize: vertical;
    min-height: 140px;
}

.kw-form-group {
    margin-bottom: 20px;
}

.kw-404-number {
    font-size: 180px;
    font-weight: 800;
    line-height: 1;
    color: #5B4FE9;
    letter-spacing: -0.05em;
    display: block;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.kw-404-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91,79,233,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.kw-404-section {
    background-color: #0D1224;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.kw-legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.kw-legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0D1224;
    margin-top: 48px;
    margin-bottom: 16px;
}

.kw-legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0D1224;
    margin-top: 32px;
    margin-bottom: 12px;
}

.kw-legal-content p {
    font-size: 16px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 18px;
}

.kw-legal-content ul {
    padding-left: 24px;
    margin-bottom: 18px;
}

.kw-legal-content ul li {
    font-size: 16px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 8px;
}

.kw-legal-content .kw-legal-date {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 40px;
}

.kw-blog-hero-sub {
    padding: 120px 0 80px;
}

.kw-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.kw-page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    border: 1px solid #DDE3F0;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
    text-decoration: none;
}

.kw-page-link:hover {
    border-color: #5B4FE9;
    color: #5B4FE9;
}

.kw-page-link.active {
    background-color: #5B4FE9;
    border-color: #5B4FE9;
    color: #FFFFFF;
}

.kw-map-strip {
    background-color: #EEF1F8;
    padding: 48px 0;
}

.kw-map-placeholder {
    background-color: #DDE3F0;
    border-radius: 12px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kw-map-placeholder p {
    font-size: 14px;
    color: #6B7280;
}

.kw-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    background-color: #0D1224;
    color: #A5F3FC;
    padding: 3px 8px;
    border-radius: 4px;
}

.kw-tab-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.kw-tab-btn {
    background-color: #1A2340;
    border: 1px solid #2E3D5C;
    color: #8899B8;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kw-tab-btn:hover,
.kw-tab-btn.active {
    background-color: #5B4FE9;
    border-color: #5B4FE9;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .kw-hero-h1 {
        font-size: 44px;
    }

    .kw-hero-sub-title {
        font-size: 32px;
    }

    .kw-section-title {
        font-size: 30px;
    }

    .kw-zigzag-row {
        flex-direction: column;
        gap: 40px;
    }

    .kw-zigzag-row.reverse {
        flex-direction: column;
    }

    .kw-zigzag-img {
        flex: none;
        width: 100%;
    }

    .kw-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .kw-step-connector {
        display: none;
    }

    .kw-specs-grid {
        grid-template-columns: 1fr;
    }

    .kw-404-number {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .kw-hero-h1 {
        font-size: 36px;
    }

    .kw-hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .kw-section {
        padding: 64px 0;
    }

    .kw-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .kw-contact-form-wrap {
        padding: 28px 20px;
    }

    .kw-contact-info-card {
        padding: 28px 24px;
    }
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Light hero default: show dark logo */
.kw-site-nav .logo-img--dark { display: inline-block; }
.kw-site-nav .logo-img--light { display: none; }
/* When nav on dark bg (scrolled dark, hero-dark, navbar-dark), swap */
.kw-site-nav.on-dark .logo-img--dark,
.navbar-dark .logo-img--dark,
body.hero-dark .kw-site-nav .logo-img--dark { display: none; }
.kw-site-nav.on-dark .logo-img--light,
.navbar-dark .logo-img--light,
body.hero-dark .kw-site-nav .logo-img--light { display: inline-block; }
