:root {
    /* Color Palette — Quiet Grid Design System */
    --bg: #FFFFFF;
    --surface: #FAFAFB;
    --ink: #0F1115;
    --muted: #6B7280;
    --border: #E6E8EC;
    --accent: #5B5FEF;

    /* Legacy variable aliases for multi-page compatibility */
    --bg-dark: #FFFFFF;
    --surface-light: #FFFFFF;
    --text-primary: #0F1115;
    --text-secondary: #6B7280;
    --accent-cyan: #5B5FEF;
    --accent-indigo: #5B5FEF;
    --accent-gradient: #0F1115;

    /* Typography */
    --font-heading: 'Instrument Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Public Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

    /* Spacing */
    --section-padding: 5rem 0;

    /* Borders & Radius */
    --radius-md: 6px;
    --radius-lg: 12px;
    --border-subtle: 1px solid var(--border);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--ink);
}

/* Elementor / Brand Wrapper Base */
.kk-brand {
    background-color: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
}

.kk-brand *,
.kk-brand *::before,
.kk-brand *::after {
    box-sizing: border-box;
}

.kk-brand img {
    max-width: 100%;
    display: block;
}

.kk-brand a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.kk-brand ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Typography Scale — Quiet Grid */
.kk-brand h1,
.kk-brand h2,
.kk-brand h3,
.kk-brand h4,
.kk-brand h5,
.kk-brand h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    margin-top: 0;
}

.kk-brand h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.kk-brand h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.kk-brand h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
}

.kk-brand p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: var(--ink) !important;
}

.glass-panel {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: none;
}

/* Buttons — Quiet Grid */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: none;
    text-decoration: none;
}

.btn-primary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    display: none;
}

.btn-primary:hover {
    background: var(--ink);
    color: #FFFFFF;
    border-color: var(--ink);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: none;
    padding: 0.6rem 0;
    font-weight: 600;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--accent);
    text-decoration: underline;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
}

.header.scrolled {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--muted);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--ink);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.25rem;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: var(--transition-fast);
}

/* Footer */
.footer {
    padding: var(--section-padding);
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h3 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--ink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.85rem;
}

/* Sections General */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 1rem;
}

/* Hero Section Base */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    position: relative;
    background: var(--bg);
}

.hero::before {
    display: none;
}

.hero-glow {
    display: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--surface);
    color: var(--muted);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--border);
}

.hero-content h1 {
    margin: 1.5rem 0;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tech-stack-card {
    padding: 2.5rem;
    position: relative;
    text-align: left;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.tech-stack-card::after {
    display: none;
}

.tech-stack-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    color: var(--ink);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-badge {
    padding: 0.35rem 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    transition: var(--transition-fast);
}

.tech-badge:hover {
    background: var(--bg);
    border-color: var(--ink);
    color: var(--ink);
}

/* About Section */
.about-text {
    font-size: 1.15rem !important;
    max-width: 800px;
    margin-inline: auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast);
}

.service-card:hover {
    border-color: var(--ink);
    box-shadow: none;
    transform: none;
}

.service-icon {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--ink);
}

/* AI Automation Section */
.automation-inner {
    padding: 3rem;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.automation-content {
    max-width: 800px;
    margin-inline: auto;
}

.feature-list {
    text-align: left;
    margin: 2rem auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--ink);
}

.feature-list span {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    display: none;
}

.process-step {
    background: var(--bg);
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.step-number {
    font-size: 1.5rem;
    font-family: var(--font-mono);
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--muted);
    background: transparent;
    padding-right: 0;
}

/* Work Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.work-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.work-card:hover {
    border-color: var(--ink);
    transform: none;
}

.work-content {
    padding: 2rem;
}

.work-meta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.work-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.work-metrics div {
    display: flex;
    flex-direction: column;
}

.work-metrics strong {
    font-size: 1.15rem;
    color: var(--ink);
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

/* Industries Section */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.industry-badge {
    padding: 0.6rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    transition: var(--transition-fast);
}

.industry-badge:hover {
    border-color: var(--ink);
    background: var(--bg);
    transform: none;
}

/* Home Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.home-tool-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast);
}

.home-tool-card:hover {
    border-color: var(--ink);
    box-shadow: none;
    transform: none;
}

.home-tool-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.home-tool-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: var(--muted);
}

.home-tool-card .btn {
    width: 100%;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.testimonial-card p {
    font-size: 1rem;
    font-style: normal;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
}

.contact-info {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--ink);
}

.contact-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-list .icon {
    font-size: 1.25rem;
    line-height: 1;
}

.contact-list a {
    color: var(--muted);
    transition: var(--transition-fast);
}

.contact-list a:hover {
    color: var(--ink);
}

.contact-form-wrapper {
    padding: 2.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(91, 95, 239, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.btn-lg {
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
}

/* Spacing Utilities */
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.p-4 { padding: 2.5rem; }

.justify-center {
    justify-content: center;
}

.w-100 {
    width: 100%;
    text-align: center;
}

.microcopy {
    font-size: 0.8rem !important;
    color: var(--muted);
    margin-bottom: 0 !important;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform var(--transition-fast);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    z-index: 999;
    box-sizing: border-box;
}

.mobile-only-btn {
    display: none;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    min-width: 240px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: none;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1.25rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--ink);
    background: var(--surface);
}

.dropdown-group-label {
    display: block;
    padding: 0.6rem 1.25rem 0.2rem;
    font-size: 0.72rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: var(--muted);
    opacity: 0.8;
    pointer-events: none;
}

/* Tools Preview Grid (Homepage) */
.tools-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Responsive Navigation for Mobile */
@media (max-width: 768px) {
    .mobile-only-btn {
        display: block;
        margin-top: 1rem;
    }

    .nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 998;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-list>li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 6px;
        min-width: unset;
        width: 100%;
        margin: 0.75rem auto 0;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
        text-align: center;
    }

    .dropdown-link {
        text-align: center;
        font-size: 1rem;
        display: block;
        padding: 0.6rem 1rem;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1000;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-content p {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .tech-stack-card {
        text-align: center;
    }

    .tech-badges {
        justify-content: center;
    }

    .process-steps::before {
        display: none;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .automation-inner {
        padding: 2rem 1.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.75rem 1.25rem;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .floating-whatsapp {
        bottom: 80px;
    }

    body {
        padding-bottom: 70px;
    }

    .dropdown-group-label {
        padding: 0.75rem 1rem 0.2rem;
        font-size: 0.75rem;
    }
    .tools-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Extension Visual Mockup (HeyGen Extension Landing Page) */
.extension-visual-mockup {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: none;
    overflow: hidden;
}
.mockup-header {
    height: 36px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 6px;
}
.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}
.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }
.mockup-address {
    flex-grow: 1;
    height: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
    font-size: 0.75rem;
    color: var(--muted);
}
.mockup-body {
    padding: 2rem;
    min-height: 280px;
}
.extension-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.extension-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: border-color var(--transition-fast);
}
.extension-card:hover {
    border-color: var(--ink);
}
.disclaimer-box {
    background: var(--surface);
    border-left: 3px solid var(--accent);
    padding: 1.25rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--muted);
}
.badge-paid {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--surface);
    color: var(--muted);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

/* Pricing Page Styles */
.pricing-note-banner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.pricing-table-wrapper {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.pricing-table th {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem;
}
.pricing-table td {
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    padding: 1rem;
}
.pricing-table tr:hover td {
    color: var(--ink);
    background: var(--surface);
}
.package-card,
.benefit-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color var(--transition-fast);
}
.package-card:hover,
.benefit-card:hover {
    border-color: var(--ink);
}
.package-price {
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 700;
}
.package-features li::before {
    color: var(--accent);
}

/* Contact / Quote Form Containers */
.quote-form-container {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.form-section-title {
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    font-weight: 600;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}
.step-card,
.service-category-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color var(--transition-fast);
}
.step-card:hover,
.service-category-card:hover {
    border-color: var(--ink);
}

/* Scoped Overrides for body.kk-modern-theme */
body.kk-modern-theme {
    --bg: #FFFFFF;
    --surface: #FAFAFB;
    --ink: #0F1115;
    --muted: #6B7280;
    --border: #E6E8EC;
    --accent: #5B5FEF;

    --bg-dark: #FFFFFF;
    --surface-light: #FFFFFF;
    --text-primary: #0F1115;
    --text-secondary: #6B7280;
    --accent-cyan: #5B5FEF;
    --accent-indigo: #5B5FEF;
    --accent-gradient: #0F1115;
    --border-subtle: 1px solid var(--border);
    --radius-md: 6px;
    --radius-lg: 12px;
    --transition-normal: 0.2s ease;
}

.kk-modern-theme .kk-brand {
    background-color: var(--bg);
    background-image: none;
    color: var(--ink);
    font-family: var(--font-body);
}

.kk-modern-theme .glass-panel {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border);
    box-shadow: none;
    border-radius: var(--radius-lg);
}

.kk-modern-theme .btn {
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-fast);
}

.kk-modern-theme .btn-primary {
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    box-shadow: none;
}

.kk-modern-theme .btn-primary:hover {
    background: var(--ink);
    color: #FFFFFF;
    border-color: var(--ink);
    box-shadow: none;
    transform: none;
}

.kk-modern-theme .btn-secondary {
    background: transparent;
    border: none;
    color: var(--accent);
}

.kk-modern-theme .btn-secondary:hover {
    background: transparent;
    border: none;
    color: var(--accent);
    text-decoration: underline;
    transform: none;
}

.kk-modern-theme .header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

.kk-modern-theme .header.scrolled {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

.kk-modern-theme .nav-link {
    color: var(--muted);
}

.kk-modern-theme .nav-link::after {
    display: none;
}

.kk-modern-theme .nav-link:hover {
    color: var(--ink);
}

.kk-modern-theme .dropdown-menu {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: none;
}

.kk-modern-theme .dropdown-link {
    border-radius: 4px;
    color: var(--muted);
}

.kk-modern-theme .dropdown-link:hover {
    background: var(--surface);
    color: var(--ink);
}

.kk-modern-theme .mobile-toggle span {
    background: var(--ink);
}

.kk-modern-theme .hero {
    background: var(--bg);
}

.kk-modern-theme .hero-glow {
    display: none;
}

.kk-modern-theme .badge {
    background: var(--surface);
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
}

.kk-modern-theme .tech-stack-card {
    background: var(--bg);
    border: 1px solid var(--border);
}

.kk-modern-theme .tech-badge {
    border-radius: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
}

.kk-modern-theme .tech-badge:hover {
    background: var(--bg);
    border-color: var(--ink);
    color: var(--ink);
    transform: none;
}

.kk-modern-theme .service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.kk-modern-theme .service-card::before {
    display: none;
}

.kk-modern-theme .service-card:hover {
    transform: none;
    border-color: var(--ink);
    box-shadow: none;
}

.kk-modern-theme .service-icon {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--ink);
    border-radius: 6px;
}

.kk-modern-theme .service-card:hover .service-icon {
    background: var(--surface);
    border-color: var(--border);
    transform: none;
}

.kk-modern-theme .process-step {
    background: var(--bg);
    border: 1px solid var(--border);
}

.kk-modern-theme .step-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--muted);
    background: transparent;
}

.kk-modern-theme .home-tool-card,
.kk-modern-theme .tool-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.kk-modern-theme .home-tool-card:hover,
.kk-modern-theme .tool-card:hover {
    transform: none;
    border-color: var(--ink);
    box-shadow: none;
}

.kk-modern-theme .home-tool-card h3,
.kk-modern-theme .tool-card h3 {
    color: var(--ink);
}

.kk-modern-theme .tool-card .best-for {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.kk-modern-theme .contact-info,
.kk-modern-theme .contact-form-wrapper,
.kk-modern-theme .quote-form-container {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.kk-modern-theme .form-section-title {
    border-bottom: 1px solid var(--border);
    color: var(--ink);
}

.kk-modern-theme .form-group label {
    color: var(--ink);
}

.kk-modern-theme .form-group input[type="text"],
.kk-modern-theme .form-group input[type="email"],
.kk-modern-theme .form-group input[type="tel"],
.kk-modern-theme .form-group select,
.kk-modern-theme .form-group textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--ink);
}

.kk-modern-theme .form-group input:focus,
.kk-modern-theme .form-group select:focus,
.kk-modern-theme .form-group textarea:focus {
    border-color: var(--accent);
    background: var(--bg);
    box-shadow: 0 0 0 2px rgba(91, 95, 239, 0.15);
}

.kk-modern-theme .footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.kk-modern-theme .footer-logo {
    color: var(--ink);
}

.kk-modern-theme .footer-col h3 {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.kk-modern-theme .footer-col ul a {
    color: var(--muted);
}

.kk-modern-theme .footer-col ul a:hover {
    color: var(--ink);
}

.kk-modern-theme .mobile-sticky-cta {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.kk-modern-theme .extension-visual-mockup {
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: none;
}

.kk-modern-theme .extension-card {
    background: var(--bg);
    border: 1px solid var(--border);
}

.kk-modern-theme .disclaimer-box {
    background: var(--surface);
    border-left: 3px solid var(--accent);
}