/*
Theme Name: Kryus Ventures
Theme URI: https://kryusventures.com
Author: Kryus Ventures
Author URI: https://kryusventures.com
Description: A premium WordPress theme for Kryus Ventures executive consulting firm featuring ACF Flexible Content page builder with warm corporate design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kryus
Tags: custom-logo, custom-menu, featured-images, theme-options, one-column

Kryus Ventures - Executive Consulting
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
    --kv-bg: #ffffff;
    --kv-bg-warm: #fdf8f4;
    --kv-bg-dark: #1a1a1a;
    --kv-bg-dark-alt: #111111;
    --kv-fg: #1a1a1a;
    --kv-fg-muted: #6b7280;
    --kv-fg-light: #9ca3af;
    --kv-fg-on-dark: #ffffff;
    --kv-fg-on-dark-muted: #d1d5db;
    --kv-bg-light-alt: #F9F7F6;
    --kv-bg-secondary:#f9f4ef;
    --kv-fg-lightgrey : #816a6a;
    --kv-gradient-warm:linear-gradient(135deg, hsl(40 80% 52%), hsl(30 85% 48%));

    --kv-primary: #c0392b;
    --kv-primary-hover: #a93226;
    --kv-primary-dark: #8b1a1a;
    --kv-accent: #d4a017;
    --kv-accent-light: #e6b830;

    --kv-border: #e5e7eb;
    --kv-border-dark: #333333;
    --kv-card: #ffffff;
    --kv-card-dark: #1f1f1f;

    --kv-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --kv-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --kv-section-padding: 4rem;
    --kv-container-max: 1240px;
    --kv-container-padding: 2rem;

    --kv-radius: 0.5rem;
    --kv-radius-lg: 0.75rem;
    --kv-radius-full: 9999px;

    --kv-shadow: 0 1px 3px rgba(0,0,0,0.1);
    --kv-shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
    --kv-shadow-xl: 0 20px 40px rgba(0,0,0,0.1);

    --kv-transition: 0.3s ease;
    --kv-transition-fast: 0.15s ease;
    --kv-gradient-hero: linear-gradient(135deg, hsl(0 72% 32%), hsl(10 70% 40%), hsl(40 80% 52%));
    
   --kv-h1: clamp(2.5rem, 5vw, 4rem);
   --kv-h2: clamp(1.75rem, 3.5vw, 1.875rem);
   --kv-h3: clamp(0.8125rem, 1.5vw, 0.875rem);
   --kv-body: 1rem;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0; padding: 0;
    font-family: var(--kv-font-sans);
    font-size: 16px; line-height: 1.7;
    color: var(--kv-fg);
    background-color: var(--kv-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--kv-transition-fast); }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--kv-font-heading);
    font-weight: 700; line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--kv-fg);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1rem; }

.text-highlight {
    background: var(--kv-gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-highlight-gold {
    color: var(--kv-accent);
}
.text-gradient-warm {
    background: linear-gradient(135deg, var(--kv-primary) 0%, var(--kv-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-muted { color: var(--kv-fg-muted); }

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%; max-width: var(--kv-container-max);
    margin: 0 auto; padding: 0 var(--kv-container-padding);
}
.container-wide { max-width: 1400px; }

.section { padding: var(--kv-section-padding) 0; }
.section-warm { background-color: var(--kv-bg-warm); }
.section-dark {
    background-color: var(--kv-bg-dark);
    color: var(--kv-fg-on-dark);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--kv-fg-on-dark);
}

.section-header { max-width: 700px; margin-bottom: 3rem; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

.section-label {
    display: inline-block;
    color: var(--kv-primary);
    font-size: 0.8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 1rem;
    position: relative;
}
.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 2rem; height: 1px;
    background: #f0a500;
    vertical-align: middle;
    margin: 0 0.75rem;
    opacity: 0.5;
}
.section-label.no-lines::before,
.section-label.no-lines::after { display: none; }

.section-description { color: var(--kv-fg-muted); font-size: 1.125rem; line-height: 1.7; }

/* Grid */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
    .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
    :root { --kv-section-padding: 4rem; }
    .container{ padding-bottom: 2rem;}
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.875rem 2rem;
    font-size: 0.9375rem; font-weight: 600;
    border-radius: var(--kv-radius); border: 2px solid transparent;
    cursor: pointer; transition: all var(--kv-transition);
    text-decoration: none; font-family: var(--kv-font-sans);
    line-height: 1;
}
.btn-primary {
    background: var(--kv-gradient-hero); color: #fff;
    border: none;
    /*border-color: var(--kv-primary);*/
}
.btn-primary:hover {
    background-color: var(--kv-primary-hover);
    border-color: var(--kv-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}
.btn-outline {
    background: transparent; color: var(--kv-fg);
    border-color: var(--kv-border);
}
.btn-outline:hover {
    border-color: var(--kv-fg);
    background: var(--kv-bg-warm);
}
.btn-outline-light {
    background: transparent; color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
    border-color: #fff; background: rgba(255,255,255,0.1);
}
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

.btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    background: var(--kv-card);
    border: 1px solid var(--kv-border);
    border-radius: var(--kv-radius-lg);
    padding: 2rem;
    transition: all var(--kv-transition);
}
.card:hover {
    box-shadow: var(--kv-shadow-lg);
    transform: translateY(-2px);
    border-color: var(--kv-primary);
}
.card-dark {
    background: var(--kv-card-dark);
    border-color: var(--kv-border-dark);
}
.card-dark:hover { border-color: var(--kv-accent); }

.card-icon {
    width: 2.5rem; height: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--kv-primary); margin-bottom: 1.25rem;
}
.card-title { font-size: 1.125rem; margin-bottom: 0.5rem; }
.card-text { color: var(--kv-fg-muted); margin-bottom: 0; font-size: 0.9375rem; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: all var(--kv-transition);
}
.site-header.is-scrolled {
    background: var(--kv-bg-light-alt);
}

.header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 1rem 0; height: 72px;
}

.site-logo { display: flex; align-items: center; gap: 0.5rem; }
.site-logo img { height: 55px; width: auto; }
.site-logo-text { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; }
/* ===== BASE ===== */
.main-nav { position: relative; z-index: 1000; }

/* ===== DESKTOP ===== */
.desktop-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu-item { position: relative; }

.menu-item > a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    color: #222;
}

/* underline */
.menu-item > a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--kv-gradient-hero);
    transition: .3s;
}
.menu-item:hover > a::after { width: 100%; }

/* desktop arrow */
.desktop-arrow {
    margin-left: 6px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #816a6a;
    border-bottom: 2px solid #816a6a;
    transform: rotate(45deg);
    transition: .3s;
}
.menu-item:hover .desktop-arrow {
    transform: rotate(-135deg);
}

/* mega */
.mega-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:265px;
    background:#fff;
    border-radius:16px;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.25s;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    overflow:hidden;
    z-index:100;
}

.menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* grid */
.mega-columns {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
}

.mega-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
}
.mega-item:hover {
    background: #fafafa;
   
}
.mega-sidebar .arrow{height: 21px; width: 30px;}
.icon { width:28px;height:25px;border-radius:0.75rem; }
.icon.red { background:#ffe7e7; }
.icon.yellow { background:#fff4db; }
.desktop-menu .mega-content h4{ font-size: 0.875rem;font-weight: 600; line-height: 1.25rem; margin: 0;}
.desktop-menu .mega-content p{ font-size: 0.75rem; line-height: 1rem; margin: 0; color: var(--kv-primary-dark);}
/* ===== MOBILE ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* panel */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    transition: .4s;
    overflow-y: auto;
}
.mobile-menu.active { left: 0; }

/* overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* nav */
.mobile-nav { list-style:none; margin:0; padding:0; }
.mobile-nav .menu-item { border-bottom:1px solid #eee; }

.menu-link {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
}

.menu-link a {
    text-decoration:none;
    color:#222;
    flex:1;
}

/* arrow */
.submenu-toggle {
    width:10px;
    height:10px;
    border-right:2px solid #222;
    border-bottom:2px solid #222;
    transform: rotate(45deg);
    transition:.3s;
}
.menu-item.open .submenu-toggle {
    transform: rotate(-135deg);
}

/* accordion */
/* FORCE MOBILE MEGA MENU TO BE VISIBLE */
.mobile-nav .mobile-mega{
    position:static !important;
    width:100% !important;
    min-width:0 !important;
    left:auto !important;
    top:auto !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    box-shadow:none !important;
    border-radius:0 !important;
    background:#fff;
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.mobile-nav .menu-item.open>.mobile-mega{
    max-height:2000px;
}

.mobile-category{
    padding:12px 18px;
    border-bottom:1px solid #eee;
}

.mobile-category:last-child{
    border-bottom:0;
}

.mobile-category-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    padding:14px 0;
}

.mobile-category-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.mobile-category-arrow{
    width:8px;
    height:8px;
    border-right:2px solid #333;
    border-bottom:2px solid #333;
    transform:rotate(45deg);
    transition:.3s;
}

.mobile-category.active .mobile-category-arrow{
    transform:rotate(-135deg);
}

.mobile-category-links{
    display:none;
    padding-left:34px;
    padding-bottom:12px;
}

.mobile-category.active .mobile-category-links{
    display:block;
}

.mobile-child{
    display:block;
    padding:8px 0 8px 0px;
    text-decoration:none;
    color:#555;
    font-size:14px;
}

.mobile-child:hover{
    color:#F36A3D;
}

.mobile-nav .simple-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 18px;
    text-decoration:none;
    color:#222;
}

.mobile-nav .simple-item .title{
    flex:1;
}

.menu-item.open .mega-menu {
    max-height: 1000px; /* safe large value */
    padding: 10px 0;
}

/* items */
.mobile-nav .mega-columns {
    padding:10px 15px;
    display:block !important;
}

.mobile-nav .mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.mobile-nav .icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.mobile-nav .mega-content h4 {
    font-size: 14px;
    margin: 0 0 4px;
}

.mobile-nav .mega-content p {
    font-size: 12px;
    margin: 0;
    color: #666;
}

/* CATEGORY MENU */

.mega-layout{
    display:inline-flex;
    align-items:flex-start;
}

.mega-sidebar{
    width:265px;
    border-right:1px solid #eee;
    padding:7px;
    background: #fff;
}

.mega-category{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    transition:.2s;
}

.mega-category:hover,
.mega-category.active{
    background:#f5f5f5;
}

.mega-category .title{
    flex:1;
    font-weight:500;
    font-size: 14px;
    color: #816a6a;
}

.mega-panels{
    display:none;
    width:340px;
    padding:4px;
    border-left:1px solid #eee;
    background:#fff;
}

.mega-layout.has-active .mega-panels{
    display:block;
}

.mega-panel{
    display:none;
}

.mega-panel.active{
    display:grid;
}

.mega-links{
    display:grid;
    gap:8px;
}

.mega-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px;
    border-radius:10px;
    text-decoration:none;
    color:#222;
}
.mega-menu.category{
    width:auto;
}
.mega-layout.has-active{
    width:620px;
}

.mega-layout:not(.has-active){
    width:265px;
}

.mega-layout:not(.has-active) .mega-panels{
    display:none;
}

.mega-layout.has-active .mega-panels{
    display:block;
}

.mega-panels span{font-size: 14px;font-weight: 500;}

.mega-panels span:hover{color:#8c1717}

/* SIMPLE MENU */

.mega-menu.simple{
    width:320px;
}

.mega-simple{
    display:flex;
    flex-direction:column;
    padding:10px;
}

.simple-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px;
    border-radius:12px;
    text-decoration:none;
    color:#222;
    transition:.25s;
}

.simple-item .title{
    flex:1;
    font-weight:600;
    font-size: 14px;
}

.simple-item:hover{
    background:#f7f7f7;
}

.mega-menu .mobile-category-left svg{ color:#E35B2F}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .menu-toggle { display:block; }
    .header-dark .site-header .main-nav .menu-toggle{ color: #ffffff;}
    .header-dark .site-header.scrolled .main-nav .menu-toggle{ color: #000000;}
    .desktop-menu { display:none !important; }

    .menu-item:hover .mega-menu {
        opacity:0;
        visibility:hidden;
    }
}

/* DARK */

.header-dark .main-nav a {
    color: #fff;
}
.header-dark .mega-panels span, .mega-simple span{color: #816a6a;}

.header-dark .mega-panels span:hover, .mega-simple span:hover{ color:#8c1717}
.header-dark .main-nav .desktop-arrow {
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
}

/* LIGHT */

.header-light .main-nav a {
    color: #816a6a;
}

/* AFTER SCROLL */

.header-dark .site-header.scrolled {
    background: var(--kv-bg-light-alt);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header-dark .site-header.scrolled .main-nav a {
    color: #816a6a;
}

.header-dark .site-header.scrolled .main-nav .desktop-arrow {
        border-right: 2px solid #816a6a;
        border-bottom: 2px solid #816a6a;
}



/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--kv-bg-light-alt);
    color: var(--kv-primary-dark);
    padding: 4rem 0 2rem;
    /* border-top: 3px solid var(--kv-primary);*/
}
.footer-grid {
    display: grid; grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-desc { color: var(--kv-fg-lightgrey); margin: 1rem 10px; font-size: 0.75rem; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 2.25rem; height: 2.25rem;
    background: rgba(255,255,255,0.08); border-radius: var(--kv-radius-full);
    color: var(--kv-primary-dark); transition: all var(--kv-transition-fast);
}
.footer-social a:hover { background: var(--kv-primary); color: #fff; }

.footer-column h4 { color: var(--kv-primary-dark); margin-bottom: 1.25rem; font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { color: var(--kv-fg-lightgrey); font-size: 0.85rem; }
.footer-links a:hover { color: var(--kv-accent); }

.footer-bottom {
    padding-top: 2rem; border-top: 1px solid var(--kv-border-dark);
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { margin: 0; font-size: 0.875rem; color:var(--kv-fg-lightgrey);}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.875rem; color: var(--kv-primary-dark); }
.footer-legal a:hover { color: var(--kv-accent); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 0.75rem 1rem; font-size: 0.9375rem;
    font-family: inherit; color: var(--kv-fg);
    background: #fff; border: 1px solid var(--kv-border);
    border-radius: var(--kv-radius); transition: border-color var(--kv-transition-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: var(--kv-primary);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    background-size: 1rem; padding-right: 3rem;
}

/* ==========================================================================
   Section-Specific Styles
   ========================================================================== */

/* Hero */
.hero-section {
    min-height: 70vh; display: flex; align-items: center;
    position: relative; padding-top: 20px;
    overflow: hidden;z-index: 1;
}

/* WHEN NO BUTTONS */
.hero-section.hero-no-buttons {
    align-items: flex-start;
    min-height: auto;
    padding-top: 60px;
}

.hero-section.hero-light { background: var(--kv-bg-light-alt); }
.hero-section.hero-dark {
    background: var(--kv-bg-dark); color: var(--kv-fg-on-dark);
}
.hero-section.hero-dark h1 { color: var(--kv-fg-on-dark); }

.hero-content { position: relative; z-index: 2; max-width: 1280px; text-align: center; margin: 0 auto; }
.hero-content.text-left { text-align: left; margin-top: 40px; }

.hero-title { margin-bottom: 1.5rem; }
.hero-section.hero-dark .hero-title .text-highlight{ background: linear-gradient(135deg, hsl(40 80% 52%), hsl(30 85% 48%)); -webkit-background-clip: text;-webkit-text-fill-color: transparent;
    background-clip: text;}
.hero-section.hero-dark .section-label{ color:#f0a500;}
.hero-description { font-size: 1.125rem; color: var(--kv-fg-muted); max-width: 600px; margin-bottom: 2rem; }
.hero-content.text-left .hero-description { margin-left: 0; }
.hero-content:not(.text-left) .hero-description { margin-left: auto; margin-right: auto; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-content.text-left .hero-buttons { justify-content: flex-start; }
.hero-content.text-left .hero-buttons:empty{ display:none;}
.hero-section.hero-dark .hero-description{ color: var(--kv-fg-on-dark-muted);}

.hero-bg-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;z-index: 0;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);z-index: 1;
}
.hero-bg-image,
.hero-bg-overlay {
    pointer-events: none;
}

@media (max-width: 768px) {.hero-section{min-height: 30vh; padding-top:6rem;} }

/* Stats */
.stats-bar { display: flex; justify-content: center; gap: 10rem; margin-top: 0rem; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.7rem; font-weight: 800; color: var(--kv-primary); }
.stat-label { font-size: 0.8125rem; color: var(--kv-fg-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.section-dark .stat-label { color: var(--kv-fg-on-dark-muted); }

@media (max-width: 768px) {
    .stats-bar { flex-wrap: wrap; gap: 2rem; }
    .stat-item { flex: 0 0 45%; }
    
}

/* Services Overview */
.service-overview-card {
    display: block; text-decoration: none;
    padding: 2rem;
    transition: all var(--kv-transition);
}
.service-overview-card:hover {
    border-left-color: var(--kv-primary);
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.service-overview-card .card-title { color: var(--kv-fg); font-weight: 700; }
.service-overview-card .card-link {
    display: inline-flex; align-items: center; gap: 0.375rem;
    font-size: 0.875rem; font-weight: 600; color: var(--kv-primary);
    margin-top: 0.75rem;
}

.service-overview-section{background: var(--kv-bg-secondary);}

.service-icon{
    width:52px;
    height:52px;
    background:#fdf1ed;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff5a1f;
    margin-bottom:20px;
}

.service-icon svg{
    display:block;
    width:24px;
    height:24px;
}

/* Service Detail Card (services page listing) */
.service-detail-item {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: start; padding: 4rem 0;
    border-bottom: 1px solid var(--kv-border);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item .service-number {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.875rem; font-weight: 600; color: var(--kv-fg-muted);
    margin-bottom: 1rem;
}
.service-detail-item .service-number .num {
    font-size: 1.5rem; font-weight: 800; color: var(--kv-fg);
}
.capabilities-list { list-style: none; padding: 0; margin: 0; }
.capabilities-list li {
    
    font-size: 0.9375rem; color: var(--kv-fg-muted);
    margin-bottom: 0.375rem;
}
.capabilities-label {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--kv-fg-muted); margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .service-detail-item { grid-template-columns: 1fr; gap: 2rem; }
}

/* Content with Image */
.content-image-section {
    display: grid; grid-template-columns: 3.8fr 1fr; gap: 4rem; align-items: center;
}
.content-image-section.image-left { direction: rtl; }
.content-image-section.image-left > * { direction: ltr; }
.content-image-img { border-radius: var(--kv-radius-lg); overflow: hidden; }
.content-image-img img { width: 100%; height: auto;     max-width: 200px;}
.content-image-text h2{ font-size: var(--kv-h2);}
.content-image-text p, .content-image-text ul{ font-size: .875rem;} 
.case-study-section{ padding: 30px var(--kv-container-padding); background: linear-gradient(180deg, hsl(30 20% 97%), hsl(30 15% 94%)); border-radius: 1 rem;}

@media (max-width: 768px) {
    .content-image-section, .content-image-section.image-left { grid-template-columns: 1fr; direction: ltr; }
}

/* Main Service Page */

/* ===============================
   SERVICES BLOCK - FINAL CSS
================================= */

.services-block {
    background: #f5f3f2;
    padding: 80px 0;
    overflow: hidden;
}

.services-block .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* WRAPPER */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

/* ROW */
.service-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e3e3e3;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
}

/* visible (scroll animation) */
.service-row.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   LEFT SIDE
================================= */

.service-left {
    max-width: 580px;
}

.service-number {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    font-size: 14px;
    font-weight: 500;
    color: #a33;
}

/* ICON BOX */
.service-number .icon, .mega-item .icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 12px;
    background: #efe9e7;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

/* LUCIDE SVG */
.service-number .icon svg, .mega-item .icon svg  {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

/* HEADING */
.service-left h2 {
    font-size: var(--kv-h2);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #1c1c1c;
}

/* DESCRIPTION */
.service-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b6b6b;
    max-width: 520px;
}

/* CTA */
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 500;
    color: #a33;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    transform: translateX(6px);
}

/* ===============================
   RIGHT SIDE
================================= */

.service-right {
    width: 360px;
    flex-shrink: 0;
}

.service-right h4 {
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #222;
}

/* LIST */
.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #444;
    transition: all 0.3s ease;
}

/* LEFT LINE */
.capabilities-list .line {
    width: 3px;
    height: 18px;
    background: #a33;
}

/* ===============================
   HOVER INTERACTION (PREMIUM)
================================= */

/* dim all */
.services-wrapper:hover .service-row {
    opacity: 0.35;
}

/* highlight active */
.services-wrapper .service-row:hover {
    opacity: 1;
}

/* icon animation */
.service-row:hover .icon {
    transform: scale(1.12) rotate(6deg);
}

/* text slight lift */
.service-row:hover h2 {
    transform: translateX(4px);
    transition: 0.3s;
}

/* ===============================
   MOBILE (HORIZONTAL SLIDER)
================================= */

@media (max-width: 992px) {

    .service-left h2 {
        font-size: var(--kv-h2);
    }

    .service-row {
        gap: 0px;
        justify-content: start;
    }
}

@media (max-width: 768px) {

    .services-wrapper {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 10px;
    }

    .service-row {
        flex: 0 0 85%;
        flex-direction: column;
        border: none;
        padding: 28px;
        background: #ffffff;
        border-radius: 16px;
        scroll-snap-align: start;

        opacity: 1;
        transform: none;
    }

    .service-left {
        max-width: 100%;
    }

    .service-right {
        width: 100%;
        margin-top: 20px;
    }

    .service-left h2 {
        font-size: var(--kv-h2);
    }

    .services-wrapper::-webkit-scrollbar {
        display: none;
    }
}

/* ===============================
   SMALL DEVICES
================================= */

@media (max-width: 480px) {

    .services-block {
        padding: 80px 0;
    }

    .service-row {
        padding: 22px;
    }

    .service-number .icon {
        width: 42px;
        height: 42px;
    }

    .service-number .icon svg {
        width: 18px;
        height: 18px;
    }
}

/*Why Kryus*/

.why-kryus {
    padding: 80px 0;
}

.why-kryus__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */


@keyframes gradientMove {
    0% { background-position: 0% }
    50% { background-position: 100% }
    100% { background-position: 0% }
}

.subtitle { color:#ff4d2e; }
.desc { color:#666; }

/* CARDS */
.why-kryus__cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.why-kryus_card {
    background:#fff;
    padding:25px;
    border-radius:16px;
    position:relative;
    transition:0.3s;
}

.why-kryus_card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.why-kryus_card::before {
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:16px;
    opacity:0;
    z-index:-1;
    transition:0.3s;
}

.why-kryus_card:hover::before { opacity:1; }

.card-bar { width:6px; height:40px; border-radius:10px; }
.red { background:#a30000; }
.orange { background:#ff4d2e; }
.yellow { background:#ffb400; }
.dark { background:#600000; }

/* ICON */
.card-icon img {
    width:40px;
    transition:0.3s;
}

.why-kryus_card:hover .card-icon img {
    transform:scale(1.15) rotate(5deg);
}

/* RESPONSIVE */
@media(max-width:992px){
    .why-kryus__grid { grid-template-columns:1fr; }
}
@media(max-width:600px){
    .why-kryus__cards { grid-template-columns:1fr; }
}

/* Feature blocks */
.feature-block-card { text-align: left; }
.feature-block-card .feature-icon {
    width: 3rem; height: 3rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--kv-bg-warm); 
    border-radius: var(--kv-radius);
    color: var(--kv-primary); margin-bottom: 1.25rem;
}
.section-dark .feature-block-card .feature-icon {
    background: rgba(255,255,255,0.08);
    color: var(--kv-accent);
}

/* =========================
   PROCESS BLOCK
========================= */

.process-block {
    padding: 60px 0;
    background: #f5f3f2;
}

.process-block .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   HEADER
========================= */

.process-header {
    max-width: 760px;
    margin-bottom: 30px;
}

.process-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9f1717;
    margin-bottom: 22px;
}

.process-header h2 {
    font-size: var(--kv-h2);
    line-height: 1.05;
    letter-spacing: -1px;
    color: #211919;
    margin-bottom: 12px;
}

.process-header h2 span {
    color: #c45b26;
}

.process-description {
    font-size: .875rem;
    line-height: 1.8;
    color: #746d6d;
}

/* =========================
   GRID
========================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* =========================
   CARD
========================= */

.process-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    border: 1px solid #ebe6e4;

    transition: all 0.35s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TOP */

.process-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 34px;
}

.process-line {
    width: 6px;
    height: 40px;
    border-radius: 50px;
}

.process-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #eadede;
    line-height: 1;
}

/* CONTENT */

.process-content h3 {
    font-size: var(--kv-h3);
    line-height: 1.3;
    margin-bottom: 5px;
    color: #211919;
}

.process-content p {
    font-size: .75rem;
    line-height: 1.8;
    color: #756d6d;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1200px) {

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

    .process-header h2 {
        font-size: var(--kv-h2);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .process-block {
        padding: 80px 0;
    }

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

    .process-header {
        margin-bottom: 50px;
    }

    .process-header h2 {
        font-size: var(--kv-h2);
    }

    .process-description {
        font-size: 16px;
    }

    .process-card {
        padding: 24px;
    }

    .process-content h3 {
        font-size: var(--kv-h3);
    }

    .process-content p {
        font-size: 15px;
    }
}



/* Testimonials */
.testimonial-card {
    background: var(--kv-card); border: 1px solid var(--kv-border);
    border-radius: var(--kv-radius-lg); padding: 2rem;
}
.testimonial-card:hover{transform: translateY(-10px) scale(1.03) !important;    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);}
.testimonial-quote-icon { color: var(--kv-primary); opacity: 0.2; margin-bottom: 1rem; }
.testimonial-text { font-size: .875rem; font-style: italic; margin: 0 0 1.5rem 0; line-height: 1.7; height:130px;}
.testimonial-author {
    display: flex; align-items: center; gap: 1rem;
    padding-top: 1rem; border-top: 1px solid var(--kv-border);
}
.author-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px; /* IMPORTANT */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a30000, #ffb400);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1; /* IMPORTANT */
    overflow: hidden; /* safety */
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.author-name { font-weight: 600; font-size: 0.9375rem; }
.author-title { font-size: 0.8125rem; color: var(--kv-fg-muted); }

/* =========================
   CTA STRIP
========================= */

.cta-strip {
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* =========================
   LIGHT
========================= */

.cta-strip-light {
    background: #f6f3f2;
}

/* =========================
   DARK
========================= */

.cta-strip-dark {
    background: linear-gradient(135deg, #180707 0%, #24090b 100%);
}

/* =========================
   CONTAINER
========================= */

.cta-strip .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   WRAPPER
========================= */

.cta-strip-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* =========================
   CONTENT
========================= */

.cta-strip-content h2 {
    font-size: var(--kv-h2);
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.cta-strip-text {
    font-size: var(--kv-h3);
    line-height: 1.7;
    max-width: 700px;
}

/* LIGHT */

.cta-strip-light h2 {
    color: #1e1616;
}

.cta-strip-light .cta-strip-text {
    color: #7b6f6f;
}

/* DARK */

.cta-strip-dark h2 {
    color: #fff;
}

.cta-strip-dark .cta-strip-text {
    color: rgba(255,255,255,0.72);
}

/* =========================
   BUTTON
========================= */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 18px 34px;

    border-radius: 18px;

    background: linear-gradient(135deg, #9d1212 0%, #d48a17 100%);

    color: #fff;
    text-decoration: none;

    font-size: 20px;
    font-weight: 600;

    transition: all 0.35s ease;
}

/* HOVER */

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

/* ICON */

.cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .cta-strip-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

}
    
/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .cta-strip {
        padding: 50px 0;
    }

    .cta-strip-content h2 {
        font-size: 34px;
    }

    .cta-strip-text {
        font-size: 16px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;

        font-size: 18px;
        padding: 16px 24px;
    }

}
/* Contact */
/* =========================================================
   CONTACT SECTION
========================================================= */

.kv-contact-section{
    position:relative;
    padding:60px 0;
    background:#f7f5f3;
}

.kv-container{
    width:min(1240px, calc(100% - 48px));
    margin:auto;
}

/* GRID */

.kv-contact-grid{
    display:grid;
    grid-template-columns:1.3fr .8fr;
    gap:64px;
    align-items:start;
}

/* LEFT */

.kv-contact-label{
    display:inline-block;
    margin-bottom:18px;
    font-size:.85rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#b12a1c;
    font-weight:600;
}

.kv-contact-heading{
    font-size: var(--kv-h2);
    line-height:1;
    font-weight:700;
    margin:0 0 24px;
    color:#1d0f11;
}

.kv-contact-description{
    font-size:1.1rem;
    line-height:1.8;
    color:#7b6667;
    max-width:720px;
    margin-bottom:42px;
}

/* FORM */

.kv-contact-form-wrap form{
    width:100%;
}

.kv-contact-form-wrap p{
    margin:0 0 24px;
}

.kv-contact-form-wrap label{
    display:block;
    font-size:.75rem;
    font-weight:600;
    margin-bottom:5px;
    color:#1d0f11;
}

.kv-contact-form-wrap input,
.kv-contact-form-wrap textarea,
.kv-contact-form-wrap select{
    width:100%;
    height:40px;
    border-radius:10px;
    border:1px solid #e5ddda;
    background:#fff;
    padding:0 22px;
    font-size:.875rem;
    color:#1d0f11;
    transition:.3s ease;
    outline:none;
}

.kv-contact-form-wrap textarea{
    min-height:180px;
    padding-top:20px;
    resize:none;
}

.kv-contact-form-wrap input:focus,
.kv-contact-form-wrap textarea:focus,
.kv-contact-form-wrap select:focus{
    border-color:#c24f26;
    box-shadow:0 0 0 4px rgba(194,79,38,.08);
}

/* TWO COLUMN */

.kv-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

/* BUTTON */

.kv-contact-form-wrap .wpcf7-submit{
    border:none;
    height:60px;
    padding:0 38px;
    border-radius:18px;
    font-size:1rem;
    font-weight:700;
    color:#fff;
    cursor:pointer;
    transition:.35s ease;
    max-width: 200px;
    background:
    linear-gradient(
        135deg,
        #a61212 0%,
        #c84b1f 50%,
        #eda31d 100%
    );
}

.kv-contact-form-wrap .wpcf7-submit:hover{
    transform:translateY(-2px);
}

/* RIGHT */

.kv-contact-right{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.kv-contact-card{
    display:flex;
    align-items:center;
    gap:24px;

    padding:1rem;
    border-radius:.75rem;
    background:#fff;

    border:1px solid #ece6e3;

    transition:.35s ease;
}

.kv-contact-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.kv-contact-icon{
    width:2.5rem;
    height:2.5rem;
    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.kv-contact-card-label{
    display:block;
    

    font-size:.75rem;
    letter-spacing:.12em;
    text-transform:uppercase;

    color:#8f7270;
}

.kv-contact-card-value{
    font-size:.875rem;
    line-height:1.4;
    color:#1d0f11;
    text-decoration:none;
    font-weight:500;
}

.kv-field{
    margin-bottom:10px;
}

.kv-field label{
    display:block;
    margin-bottom:12px;
}

.kv-contact-form-wrap br{
    display:none;
}

/* MOBILE */

@media(max-width:991px){

    .kv-contact-section{
        padding:90px 0;
    }

    .kv-contact-grid{
        grid-template-columns:1fr;
        gap:48px;
        display: block;
    }

    .kv-form-row{
        grid-template-columns:1fr;
        gap:0;
    }

}

@media(max-width:767px){

    .kv-contact-heading{
        font-size:2.5rem;
    }

    .kv-contact-description{
        font-size:1rem;
    }

    .kv-contact-card{
        padding:22px;
        gap: 15px;
    }

    .kv-contact-icon{
        width:40px;
        height:40px;
    }

    .kv-contact-card-value{
        font-size:1.1rem;
    }

    .kv-contact-form-wrap input,
    .kv-contact-form-wrap textarea,
    .kv-contact-form-wrap select{
        height:56px;
        font-size:16px;
    }

}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    padding: 60px 0;
    background: #f6f3f2;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* =========================
   CONTAINER
========================= */

.faq-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   GRID
========================= */

.faq-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 90px;
    align-items: start;
}

/* =========================
   LEFT
========================= */

.faq-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a01818;
    margin-bottom: 12px;
}

.faq-left h2 {
    font-size: var(--kv-h2);
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    color: #1d1515;
}

.faq-description {
    font-size: var(--kv-h3);
    line-height: 1.8;
    color: #7d7070;
    margin-bottom: 42px;
}

/* CTA */

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #a01818;
    text-decoration: none;

    font-size: 28px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.faq-cta svg {
    transition: transform 0.3s ease;
}

.faq-cta:hover svg {
    transform: translateX(4px);
}

/* =========================
   RIGHT
========================= */

/* ITEM */

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* QUESTION */

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 12px 0;

    background: none;
    border: none;

    cursor: pointer;

    text-align: left;

    font-size: .875rem;
    line-height: 1.3;
    font-weight: 600;

    color: #1d1515;
}

.faq-accordion .faq-item:first-child {
    border-top: 0;
}

/* ICON */

.faq-icon {
    flex-shrink: 0;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: all 0.4s ease;
}

.faq-answer-inner {
    padding-bottom: 15px;
    max-width: 850px;
    font-size: .875rem;
    line-height: 1.625;
    color: #7d7070;
}

/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .faq-question {
        font-size: 28px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 0px 0;
    }

    .faq-left h2 {
        font-size: 40px;
    }

    .faq-description {
        font-size: 16px;
    }

    .faq-question {
        padding: 24px 0;
        font-size: 20px;
    }

    .faq-answer-inner {
        font-size: 16px;
    }

    .faq-cta {
        font-size: 22px;
    }

}

/* Service prev/next nav */
.service-nav {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: 2rem 0; border-top: 1px solid var(--kv-border);
    border-bottom: 1px solid var(--kv-border);
    margin: 3rem 0;
}
.service-nav a {
    font-size: 0.875rem; font-weight: 600; color: var(--kv-fg-muted);
    display: flex; align-items: center; gap: 0.375rem;
}
.service-nav a:hover { color: var(--kv-primary); }

/* =========================
   OUTCOMES BLOCK
========================= */

.outcomes-block {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

/* =========================
   DARK VERSION
========================= */

.outcomes-dark {
    background:
        radial-gradient(circle at center, rgba(120,20,20,0.28) 0%, transparent 45%),
        linear-gradient(135deg, #180707 0%, #24090b 40%, #130405 100%);
}

/* =========================
   LIGHT VERSION
========================= */

.outcomes-light {
    background: #f5f3f2;
}

/* =========================
   CONTAINER
========================= */

.outcomes-block .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   GRID
========================= */

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 120px;
    align-items: start;
}

/* =========================
   LEFT
========================= */

.outcomes-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f0a500;
    margin-bottom: 12px;
}

.outcomes-left h2 {
    font-size: var(--kv-h2);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.outcomes-description {
    font-size: 0.875rem;
    line-height: 1.8;
    max-width: 680px;
}

/* =========================
   DARK TYPOGRAPHY
========================= */

.outcomes-dark h2 {
    color: #fff;
}

.outcomes-dark .outcomes-description {
    color: rgba(255,255,255,0.72);
}

/* =========================
   LIGHT TYPOGRAPHY
========================= */

.outcomes-light h2 {
    color: #211919;
}

.outcomes-light .outcomes-description {
    color: #756d6d;
}

/* =========================
   RIGHT LIST
========================= */

.outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ITEM */

.outcome-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ICON */

.outcome-icon {
    flex-shrink: 0;
}

.outcome-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

/* TEXT */

.outcome-text {
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
}

/* DARK */

.outcomes-dark .outcome-text {
    color: rgba(255,255,255,0.86);
}

/* LIGHT */

.outcomes-light .outcome-text {
    color: #211919;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .outcomes-left h2 {
        font-size: var(--kv-h2);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .outcomes-block {
        padding: 80px 0;
    }

    .outcomes-left h2 {
        font-size: var(--kv-h2);
    }

    .outcomes-description {
        font-size: 16px;
    }

    .outcome-text {
        font-size: 17px;
    }

    .outcomes-list {
        gap: 22px;
    }
}
.outcomes-right{
    display:flex;
    flex-direction:column;
    gap:45px;
}

.outcome-group{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.outcome-group-title{
    font-size:20px;
    font-weight:700;
    margin:0;
}

.outcomes-dark .outcome-group-title{
    color:#fff;
}

.outcomes-light .outcome-group-title{
    color:#211919;
}

.outcomes-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}
/* Who benefits cards */
.benefit-card {
    background: var(--kv-bg-warm); border-radius: var(--kv-radius-lg);
    padding: 2rem; text-align: center;
}
.benefit-card h3 { font-size: var(--kv-h3); margin-bottom: 0.5rem; }
.benefit-card p { color: var(--kv-fg-muted); margin: 0; font-size: 0.9375rem; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1; transform: translateY(0);
}
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ==========================================================================
   Utilities
   ========================================================================== */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0; }

/* =========================
   WHY CHOOSE BLOCK
========================= */

.why-choose-block {
    padding: 80px 0;
    background: #f5f3f2;
}

.why-choose-block .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 120px;
    align-items: start;
}

/* =========================
   LEFT SIDE
========================= */

.why-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #d18b18;
    margin-bottom: 24px;
}

.why-left h2 {
    font-size: var(--kv-h2);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 34px;
    color: #1b1212;
}

.why-choose-left-content {
    font-size: .875rem;
    line-height: 1.625;
    margin-bottom: 20px;
    color: #756d6d;
}

/* =========================
   RIGHT SIDE
========================= */

.why-right h5 {
    font-size: .75rem;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
    color: #1c1c1c;
}

/* BENEFIT ITEM */

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.benefit-content h4 {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 0px;
    color: #1a1a1a;
}

.benefit-content p {
    font-size: .75rem;
    line-height: 1.625;
    color: #756d6d;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .why-left h2 {
        font-size: var(--kv-h2);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .why-choose-block {
        padding: 80px 0;
    }

    .why-left h2 {
        font-size: var(--kv-h2);
    }

    .why-choose-left-content {
        font-size: 16px;
    }

    .benefit-content h4 {
        font-size: 18px;
    }

    .benefit-content p {
        font-size: 15px;
    }
}
/* =========================
   WHO BENEFIT BLOCK
========================= */

.who-benefit-block {
    padding: 60px 0;
    background: #f5f3f2;
}

.who-benefit-block .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   HEADER
========================= */

.benefit-header {
    margin-bottom: 35px;
}

.benefit-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #b3261e;
    margin-bottom: 24px;
}

.benefit-header h2 {
    font-size: var(--kv-h2);
    line-height: 1.1;
    letter-spacing: -1px;
    color: #1b1212;
    max-width: 680px;
}

/* =========================
   GRID
========================= */

.benefit-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================
   CARD
========================= */

.benefit-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    border: 1px solid #e8e3e1;

    transition: all 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ICON */

.benefit-card-icon {
    width: 40px;
    height: 40px;
    background: #f3e9e7;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}

.benefit-card-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

/* TITLE */

.benefit-card h3 {
    font-size: var(--kv-h3);
    line-height: 1.3;
    margin-bottom: 2px;
    color: #1b1212;
    text-align: left;
}

/* DESCRIPTION */

.benefit-card p {
    font-size: .75rem;
    line-height: 1.8;
    color: #6d6666;
    text-align: left;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .benefit-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-header h2 {
        font-size: var(--kv-h2);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .who-benefit-block {
        padding: 80px 0;
    }

    .benefit-cards-grid {
        grid-template-columns: 1fr;
    }

    .benefit-header {
        margin-bottom: 40px;
    }

    .benefit-header h2 {
        font-size: var(--kv-h2);
    }

    .benefit-card {
        padding: 28px;
    }

    .benefit-card h3 {
        font-size: var(--kv-h3);
    }

    .benefit-card p {
        font-size: 15px;
    }
}
/* =========================
   CAPABILITIES BLOCK
========================= */

.capabilities-block {
    padding: 60px 0;
    background: #f5f3f2;
}

.capabilities-block .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   HEADER
========================= */

.capabilities-header {
    max-width: 760px;
    margin-bottom: 20px;
}

.capabilities-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8f1414;
    margin-bottom: 22px;
}

.capabilities-header h2 {
    font-size: var(--kv-h2);
    line-height: 1.05;
    letter-spacing: -1px;
    color: #211919;
    margin-bottom: 12px;
}

.capabilities-header h2 span {
    color: #c25728;
}

.capabilities-description {
    font-size: .875rem;
    line-height: 1.8;
    color: #746d6d;
}

/* =========================
   GRID
========================= */

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* =========================
   CARD
========================= */

.capability-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #ebe6e4;
    overflow: hidden;

    transition: all 0.35s ease;
}

/* LEFT ACCENT BORDER */

.capability-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent);
    border-radius: 30px;
}

/* HOVER */

.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TITLE */

.capability-card h3 {
    font-size: var(--kv-h3);
    line-height: 1.25;
    margin-bottom: 5px;
    color: #211919;
}

/* DESCRIPTION */

.capability-card p {
    font-size: .75rem;
    line-height: 1.8;
    color: #756d6d;
    margin: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1200px) {

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

    .capabilities-header h2 {
        font-size: var(--kv-h2);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .capabilities-block {
        padding: 80px 0;
    }

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

    .capabilities-header {
        margin-bottom: 50px;
    }

    .capabilities-header h2 {
        font-size: var(--kv-h2);
    }

    .capabilities-description {
        font-size: 16px;
    }

    .capability-card {
        padding: 26px;
    }

    .capability-card h3 {
        font-size: var(--kv-h3);
    }

    .capability-card p {
        font-size: 15px;
    }
}
/* =========================
   RELATED SERVICES
========================= */

.related-services {
    background: #f6f3f2;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* =========================
   CONTAINER
========================= */

.related-services .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   TOP SECTION
========================= */

.related-services > .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* =========================
   HEADER
========================= */

.related-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8b6f6f;
    margin-bottom: 12px;
}

.related-header h2 {
    font-size: var(--kv-h2);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #1d1515;
    margin-bottom: 16px;
}

/* =========================
   GRID
========================= */

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================
   CARD
========================= */

.related-card {
    background: #fff;

    border-radius: 20px;

    padding: 20px;

    min-height: 190px;

    text-decoration: none;

    border: 1px solid rgba(0,0,0,0.04);

    transition: all 0.35s ease;
}

/* HOVER */

.related-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
   ICON
========================= */

.related-icon {
    width: 2.5rem;
    height: 2.5rem;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}

.related-icon svg {
    width: 20px;
    height: 20px;
}

/* =========================
   TITLE
========================= */

.related-card h3 {
    font-size:  var(--kv-h3);
    line-height: 1.2;
    color: #1d1515;
    margin-bottom: 10px;

    text-transform: none;
    letter-spacing: -0.02em;
}

/* =========================
   DESCRIPTION
========================= */

.related-description {
    font-size: .75rem;
    line-height: 1.8;
    color: #7c6f6f;
}

/* =========================
   BOTTOM NAV
========================= */

.related-bottom-nav {
    border-top: 1px solid rgba(0,0,0,0.06);

    padding: 20px 0;
}

/* NAV GRID */

.related-nav-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* NAV ITEM */

.related-nav {
    display: flex;
    align-items: center;
    gap: 20px;

    text-decoration: none;

    color: #7c6f6f;

    transition: all 0.3s ease;
}

.related-next {
    text-align: right;
}

/* LABEL */

.related-nav-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 0px;
}

/* TITLE */

.related-nav-title {
    font-size: var(--kv-h3);
    font-weight: 600;

    color: #6c5e5e;
}

/* ARROW */

.related-nav-arrow {
    font-size: 26px;
}

/* HOVER */

.related-nav:hover {
    transform: translateX(4px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

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

}

/* CTA */

.related-card-cta {
    margin-top: 10px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: .75rem;
    font-weight: 600;

    color: #e7a523;

    transition: all 0.3s ease;
}

.related-card-cta svg {
    width: 16px;
    height: 16px;

    transition: transform 0.3s ease;
}

.related-card:hover .related-card-cta svg {
    transform: translateX(4px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .related-services > .container {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    .related-header h2 {
        margin-bottom: 50px;
    }

    .related-card {
        min-height: auto;
        padding: 28px;
    }

    .related-card h3 {
        font-size: 28px;
    }

    .related-description {
        font-size: 16px;
    }

    .related-nav-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-next {
        text-align: left;
    }

}
/* =========================
   CTA SECTION
========================= */

.cta-section {
    padding: 25px 0;
    background: radial-gradient(circle at center, rgba(120,20,20,0.28) 0%, transparent 45%),
        linear-gradient(135deg, #180707 0%, #24090b 40%, #130405 100%);
}

/* =========================
   CONTAINER
========================= */

.cta-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   BOX
========================= */

.cta-box {
    position: relative;

    overflow: hidden;

    border-radius: 0;

    padding: 70px 40px;

    background:
        radial-gradient(circle at center,
        rgba(186, 64, 20, 0.28) 0%,
        rgba(186, 64, 20, 0.12) 24%,
        rgba(18, 7, 8, 0) 60%),
        linear-gradient(135deg, #1a090a 0%, #22090b 100%);
}

/* =========================
   CONTENT
========================= */

.cta-content {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;

    position: relative;
    z-index: 2;
}

/* =========================
   HEADING
========================= */

.cta-content h2 {
    font-size: 2.25rem;

    line-height: 1.05;

    letter-spacing: -0.04em;

    color: #fff;

    margin-bottom: 15px;
}

/* =========================
   DESCRIPTION
========================= */

.cta-description {
    max-width: 760px;

    margin: 0 auto 54px;

    font-size: .875rem;
    line-height: 1.7;

    color: rgba(255,255,255,0.62);
}

/* =========================
   BUTTONS
========================= */

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

/* SINGLE BUTTON CENTER */

.cta-buttons.single-button {
    justify-content: center;
}

/* =========================
   BUTTON
========================= */

.cta-btn {
    height: 2.75rem;

    padding: 0 38px;

    border-radius: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    font-size: .875rem;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.35s ease;
}

/* =========================
   PRIMARY
========================= */

.cta-btn-primary {
    background: linear-gradient(135deg, #d45713 0%, #f0a11b 100%);
    color: #fff;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(240,161,27,0.25);
}

.cta-btn-primary svg {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(4px);
}

/* =========================
   SECONDARY
========================= */

.cta-btn-secondary {
    border: 1px solid rgba(255,255,255,0.16);

    background: rgba(255,255,255,0.02);

    backdrop-filter: blur(10px);

    color: rgba(255,255,255,0.78);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.25);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .cta-box {
        padding: 120px 40px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .cta-section {
        padding: 0px 0;
    }

    .cta-box {
        padding: 50px 26px;
    }

    .cta-content h2 {
        font-size: 25px;
    }

    .cta-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        height: 64px;
        font-size: 12px;
    }

}
/* =========================
   SECTION
========================= */
.kv-team-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:36px;
    margin-top: 50px;
}

.label-caps {
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8c1717;
}

.section-title{
   font-size: 1.875rem;
   line-height: 2.25rem; 
   font-weight: 700;
}

.kv-member-card{
    display:flex;
    align-items:stretch;
    background:#fff;
    border-radius:1rem;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.kv-member-card:hover{
    transform:translateY(-8px);
}

.kv-member-image{
    width:8rem;
    overflow:hidden;
}

.kv-member-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.kv-member-content{
    padding: 1.5rem;
    display:flex;
    flex-direction:column;
    flex:1;
}

.kv-member-content h3{
    margin:0 0 10px;
    font-size:1.25rem;
    line-height:1.05;
    font-weight:700;
    color:#171717;
}

.designation{
    display:block;
    margin-bottom:.25rem;
    font-size:.75rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#b3261e;
}

.kv-member-content p{
    margin:0;
    color:#666;
    font-size:.75rem;
    line-height:1.625;
}

.expertise-list{
    margin-top:7px;
    display:flex;
    flex-wrap:wrap;
    gap: .5rem;
}

.expertise-list span{
    font-size:10px;
    color: #8c1717;
}

.read-more{
    margin-top:20px;
    color:#b3261e;
    font-weight:600;
    text-decoration:none;
}

.read-more:hover{
    color:#000;
}

@media(max-width:991px){

.kv-team-grid{
    grid-template-columns:1fr;
}

.kv-member-card{
    min-height:280px;
}

.kv-member-image{
    width:200px;
    min-width:200px;
}

.kv-member-content h3{
    font-size:34px;
}

}

@media(max-width:767px){

.kv-member-card{
    flex-direction:column;
}

.kv-member-image{
    width:100%;
    min-width:100%;
    height:340px;
}

.kv-member-content{
    padding:24px;
}

.kv-member-content h3{
    font-size:30px;
}

.kv-member-content p{
    font-size:16px;
}

.expertise-list{
    gap:10px;
}

}

/* =========================================
   BLOG ARCHIVE
========================================= */

.kv-blog-archive{
    padding:60px 0;
    background:#f5f3f2;
    position:relative;
    overflow:hidden;
}

.kv-blog-archive .container{
    width:min(1280px, 92%);
    margin:auto;
}

/* HEADING */

.kv-blog-heading{
    margin-bottom:60px;
}

.kv-eyebrow{
    display:inline-block;
    font-size:.85rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#c17d11;
    margin-bottom:14px;
}

.kv-blog-heading h2{
    font-size:var(--kv-h2);
    line-height:1.05;
    color:#180909;
    margin:0;
}

/* FEATURED */

.kv-featured-post{
    display:block;
    background:#fff;
    border-radius:32px;
    padding:2.5rem;
    text-decoration:none;
    border:1px solid rgba(0,0,0,.06);
    transition:.4s ease;
    box-shadow:0 4px 20px rgba(0,0,0,.03);
}

.kv-featured-post:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.kv-post-category{
    display:inline-block;
    font-size:.75rem;
    text-transform:uppercase;
    color:#c17d11;
    margin-bottom:1rem;
}

.kv-featured-title{
    margin:0 0 .75rem;
    font-size:var(--kv-h2);
    line-height:1.1;
    color:#180909;
}

.kv-featured-excerpt{
    font-size:1rem;
    line-height:1.7;
    color:#7a6464;
    max-width:900px;
    margin-bottom:25px;
}

/* AUTHOR */

.kv-post-author{
    display:flex;
    align-items:center;
    gap:16px;
}

.kv-author-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#f3e4e4;
    color:#9f1d1d;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
}

.kv-author-info{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.kv-author-info strong{
    color:#180909;
    font-size:1rem;
}

.kv-author-meta{
    font-size:.95rem;
    color:#866e6e;
}

/* GRID */

.kv-blog-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:34px;
    margin-top: 30px;
}

/* CARD */

.kv-blog-card{
    display:block;
    background:#fff;
    border-radius:28px;
    padding:46px;
    text-decoration:none;
    border:1px solid rgba(0,0,0,.05);
    transition:.35s ease;
    box-shadow:0 4px 20px rgba(0,0,0,.03);
}

.kv-blog-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 50px rgba(0,0,0,.08);
}

.kv-card-category{
    display:inline-block;
    margin-bottom:20px;
    font-size:.8rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#c17d11;
}

.kv-card-title{
    font-size:2rem;
    line-height:1.3;
    color:#180909;
    margin:0 0 24px;
}

.kv-card-excerpt{
    color:#7a6464;
    line-height:1.8;
    font-size:1.05rem;
    margin-bottom:34px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .kv-featured-post{
        padding:40px;
    }

    .kv-blog-grid{
        grid-template-columns:1fr;
        display: block;
    }

}

@media(max-width:767px){

    .kv-blog-archive{
        padding:80px 0;
    }

    .kv-featured-post,
    .kv-blog-card{
        padding:28px;
        border-radius:24px;
        margin-bottom: 20px;
    }

    .kv-featured-excerpt{
        font-size:1rem;
    }
    .kv-author-avatar{
        display: none;
    }
    .kv-featured-title{ font-size: 1.2rem;}
    .kv-author-info strong{font-size: 0.8rem;}
}
/* Single Blog Layout */
.single-blog-layout {
    display: grid;
    gap: 3rem;
}
.single-blog-layout.has-sidebar {
    grid-template-columns: 1fr 320px;
}
.single-blog-layout.no-sidebar {
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.single-blog-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.single-blog-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.single-blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--kv-border);
    margin-bottom: 2rem;
}
.single-blog-meta .blog-card-author div {
    display: flex;
    flex-direction: column;
}
.single-blog-meta .blog-card-author span {
    font-size: 0.8125rem;
    color: var(--kv-fg-muted);
}
.single-blog-share {
    display: flex;
    gap: 0.75rem;
}
.single-blog-share a {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--kv-radius-full);
    border: 1px solid var(--kv-border);
    color: var(--kv-fg-muted);
    transition: all var(--kv-transition);
}
.single-blog-share a:hover {
    background: var(--kv-primary);
    border-color: var(--kv-primary);
    color: #fff;
}

/* Featured Image */
.single-blog-featured-image {
    margin: 0 0 2.5rem;
    border-radius: var(--kv-radius-lg);
    overflow: hidden;
}
.single-blog-featured-image img {
    width: 100%;
    border-radius: var(--kv-radius-lg);
}
.single-blog-featured-image figcaption {
    font-size: 0.8125rem;
    color: var(--kv-fg-muted);
    text-align: center;
    margin-top: 0.75rem;
}

/* Post Body Typography */
.single-blog-body {
    font-size: 1.0625rem;
    line-height: 1.8;
}
.single-blog-body h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.single-blog-body h3 { font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.single-blog-body p { margin-bottom: 1.25rem; }
.single-blog-body ul, .single-blog-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.single-blog-body li { margin-bottom: 0.5rem; }
.single-blog-body blockquote {
    border-left: 4px solid var(--kv-primary);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: var(--kv-bg-warm);
    border-radius: 0 var(--kv-radius) var(--kv-radius) 0;
    font-style: italic;
    color: var(--kv-fg);
}
.single-blog-body img {
    border-radius: var(--kv-radius-lg);
    margin: 1.5rem 0;
}

/* Tags */
.single-blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--kv-border);
    color: var(--kv-fg-muted);
}
.blog-tag {
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--kv-border);
    border-radius: var(--kv-radius-full);
    font-size: 0.8125rem;
    color: var(--kv-fg-muted);
    transition: all var(--kv-transition);
}
.blog-tag:hover {
    border-color: var(--kv-primary);
    color: var(--kv-primary);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--kv-bg-warm);
    border: 1px solid var(--kv-border);
    border-radius: var(--kv-radius-lg);
    margin: 2rem 0;
}
.author-box-avatar img {
    width: 80px;
    height: 80px;
    border-radius: var(--kv-radius-full);
}
.author-box-content h4 { margin: 0 0 0.5rem; }
.author-box-content p { color: var(--kv-fg-muted); font-size: 0.9375rem; margin: 0 0 0.75rem; }
.author-box-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--kv-primary);
}

/* Post Navigation */
.single-blog-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--kv-border);
}
.single-blog-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--kv-border);
    border-radius: var(--kv-radius-lg);
    color: var(--kv-fg);
    transition: all var(--kv-transition);
}
.single-blog-nav-link:hover {
    border-color: var(--kv-primary);
    background: var(--kv-bg-warm);
}
.single-blog-nav-next { justify-content: flex-end; }
.single-blog-nav-arrow {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--kv-bg-warm);
    color: var(--kv-primary);
    flex-shrink: 0;
    transition: all var(--kv-transition);
}
.single-blog-nav-link:hover .single-blog-nav-arrow {
    background: var(--kv-primary);
    color: #fff;
}
.single-blog-nav-label {
    display: block;
    font-size: 0.75rem;
    color: var(--kv-fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.single-blog-nav-title {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Sidebar */
.single-blog-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
}
.sidebar-widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--kv-card);
    border: 1px solid var(--kv-border);
    border-radius: var(--kv-radius-lg);
}
.sidebar-widget-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--kv-primary);
}
.sidebar-post {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--kv-border);
    color: var(--kv-fg);
    transition: color var(--kv-transition-fast);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { color: var(--kv-primary); }
.sidebar-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--kv-radius);
    overflow: hidden;
    flex-shrink: 0;
}
.sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
}
.sidebar-post-date {
    display: block;
    font-size: 0.75rem;
    color: var(--kv-fg-light);
    margin-top: 0.25rem;
}
.sidebar-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar-categories li { border-bottom: 1px solid var(--kv-border); }
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--kv-fg-muted);
    transition: color var(--kv-transition-fast);
}
.sidebar-categories a:hover { color: var(--kv-primary); }
.sidebar-cat-count {
    background: var(--kv-bg-warm);
    padding: 0.1rem 0.5rem;
    border-radius: var(--kv-radius-full);
    font-size: 0.75rem;
}
.sidebar-cta {
    padding: 2rem;
    background: var(--kv-bg-dark);
    color: var(--kv-fg-on-dark);
    border-radius: var(--kv-radius-lg);
    text-align: center;
}
.sidebar-cta p {
    color: var(--kv-fg-on-dark-muted);
    font-size: 0.9375rem;
    margin: 0.75rem 0 1.25rem;
}

/* Related Posts */
.related-posts-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--kv-border);
}
.related-posts-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .single-blog-layout.has-sidebar { grid-template-columns: 1fr; }
    .single-blog-sidebar { position: static; }
}
@media (max-width: 640px) {
    .single-blog-nav { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; text-align: center; }
}

/* Consulting */
.kv-hero-consulting{
    padding:120px 0;
    overflow:hidden;
}

.kv-hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:80px;
}

.kv-hero-eyebrow{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:24px;

    font-size:14px;
    font-weight:600;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:#a52a1f;
}

.kv-hero-eyebrow span{
    width:48px;
    height:1px;
    background:#d48b8b;
}

.kv-hero-title{
    font-size:clamp(3rem,6vw,6rem);
    line-height:.95;
    font-weight:700;
    color:#180909;
    margin:0 0 32px;
}

.kv-hero-title .gradient{
    background:linear-gradient(
        90deg,
        #a91616,
        #c4511f,
        #e29a18
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.kv-hero-text{
    max-width:620px;
    font-size:1.35rem;
    line-height:1.7;
    color:#8d6f6f;
    margin-bottom:40px;
}

.kv-hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btnPrimary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    height:58px;

    border-radius:16px;

    background:linear-gradient(
        90deg,
        #a91515,
        #d26d1b,
        #e5a019
    );

    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.btnSecondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:190px;
    height:58px;

    border-radius:16px;

    border:2px solid #c85a2a;
    color:#2a1b1b;
    text-decoration:none;
    font-weight:600;
}

.kv-hero-image-wrap{
    position:relative;
}

.kv-hero-image{
    position:relative;
    width:100%;
    max-width:450px;
    height:600px;
    margin-left:auto;
    z-index:2;
    object-fit:cover;
    border-radius: 15px;
    
}

.kv-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:32px;
    display:block;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.kv-shape-top{
    position:absolute;
    top:-20px;
    right:-20px;

    width:140px;
    height:160px;

    background:linear-gradient(135deg, hsl(40 80% 52%), hsl(30 85% 48%));
    border-radius:24px;
    z-index:1;
}

.kv-shape-bottom{
    position:absolute;
    left:15px;
    bottom:-25px;

    width:170px;
    height:170px;

    border:2px solid #e6b7b7;
    border-radius:24px;
    z-index:1;
}

.kv-hero-stats{
    position:absolute;
    left:-6px;
    bottom:-25px;
    background:#fff;
    border-radius:15px;
    padding:15px 15px;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    z-index:10;
}

.kv-stat{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.kv-stat:not(:last-child){
    border-right:1px solid #ececec;
    padding-right:0px;
}

.kv-stat-number{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:2px;
    font-size:48px;
    font-weight:700;
    line-height:1;
    
}

.kv-stat-suffix{
    font-size:.7em;
    line-height:1;
}

.kv-stat-label{
    display:block;
    margin-top:8px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.08em;
    white-space:nowrap; /* keeps YEARS/CLIENTS on one line */
    color:#666;
}

.kv-divider{
    width:1px;
    height:50px;
    background:#eee;
    margin:0 24px;
}

.kv-stat strong{
    display:block;
    font-size:2rem;
    line-height:1;
    color:#180909;
}

.kv-stat:first-child strong{
    color:#b12a1d;
}

.kv-stat:last-child strong{
    color:#d99b18;
}

.kv-stat span{
    display:inline;
    margin-top:6px;
    font-size:13px;
    letter-spacing:.1em;
    text-transform:uppercase;
}

@media(max-width:991px){

    .kv-hero-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .kv-hero-image{
        max-width:450px;
        height:550px;
        margin:auto;
    }
}

/* TABLET */

@media (max-width:1024px){

    .kv-hero-grid{
        gap:60px;
    }

    .kv-stats-card{
        left:0;
    }
}

/* MOBILE */

@media (max-width:768px){

    .kv-hero-consulting{
        padding:80px 0;
    }

    .kv-hero-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .kv-hero-content{
        text-align:center;
    }

    .kv-hero-eyebrow{
        justify-content:center;
    }

    .kv-hero-text{
        margin-left:auto;
        margin-right:auto;
    }

    .kv-hero-buttons{
        justify-content:center;
    }

    .kv-shape-top{
        width:90px;
        height:100px;
    }

    .kv-shape-bottom{
        width:110px;
        height:110px;
    }

    .kv-stats-card{
        position:relative;
        left:auto;
        bottom:auto;

        margin-top:20px;
        width:100%;
        justify-content:center;
    }
     .kv-hero-image{
        height:420px;
    }
    
    .kv-hero-stats{ left: -25px;}
}

/* SMALL MOBILE */

@media (max-width:480px){

    .kv-hero-title{
        font-size:3rem;
    }

    .btnPrimary,
    .btnSecondary{
        width:100%;
    }

    .kv-stat strong{
        font-size:1.6rem;
    }

    .kv-stats-card{
        padding:18px;
    }
}

/* Consultants & Specialists */
.ts-section{
    padding:100px 0;
}

.ts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.ts-card{
    background:#fff;
    border-radius:.75rem;
    padding:1rem;
    border:1px solid #ece7e2;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
    transition:.35s;
}

.ts-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

.ts-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.ts-image{
    width:68px;
    height:68px;
    flex:none;
}

.ts-image img{
    width:100%;
    height:100%;
    border-radius:18px;
    object-fit:cover;
}

.ts-name{
    margin:0;
    font-size: .875rem;
    font-weight:600;
    line-height:1.2;
}

.ts-designation{
    display:block;
    margin-top:6px;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.12em;
    color: var(--kv-primary-dark);
}

.ts-content{
    color:#6d6d6d;
    font-size: .75rem;
    line-height:1.625;
}

@media(max-width:1200px){

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

}

@media(max-width:768px){

.ts-grid{
grid-template-columns:1fr;
gap:20px;
}

.ts-card{
padding:18px;
}

.ts-name{
font-size:24px;
}

.ts-content{
font-size:16px;
}

.ts-image{
width:60px;
height:60px;
}

}
.footer-links li{
    position: relative;
}

.footer-links li a{
    display: inline-block;
    position: relative;
}

.footer-links li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--kv-gradient-hero);
    transition: .3s;
}

.footer-links li:hover a::after{
    width: 100%;
}