/* ── HERO ──────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding: 110px 0 80px;
    background: linear-gradient(135deg,
        #2e1010 0%, #1e1e1e 35%, #0e0e0e 65%, #1e0808 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 55%, rgba(160, 20, 20, 0.18) 0%, transparent 48%),
        radial-gradient(ellipse at 85% 20%, rgba(200, 40, 40, 0.09) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(to bottom, #c02020 0%, #8e1010 100%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 15px;
    border-radius: 2px;
    border: 1px solid #6a0808;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.hero-tag i { font-size: 9px; }

.hero-title {
    font-size: 52px;
    font-weight: bold;
    color: #f0f0f0;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6), 0 -1px 0 rgba(255, 255, 255, 0.04);
    line-height: 1.12;
    margin-bottom: 18px;
}

.hero-title em {
    color: #e03030;
    font-style: normal;
    text-shadow: 0 2px 10px rgba(180, 30, 30, 0.55);
}

.hero-sub {
    font-size: 15px;
    color: #7a7a7a;
    line-height: 1.65;
    margin-bottom: 34px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 5px 12px;
    font-size: 11px;
    color: #707070;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-chip i { color: #c02020; font-size: 9px; }

/* Hero Visual (right side) */
.hero-visual {
    background: linear-gradient(135deg, #252525 0%, #181818 100%);
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.hv-bar {
    background: linear-gradient(to bottom, #2e2e2e, #222);
    border-bottom: 1px solid #111;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hv-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hv-dot.r { background: #c02020; box-shadow: 0 0 5px rgba(192, 32, 32, 0.5); }
.hv-dot.y { background: #c09020; box-shadow: 0 0 5px rgba(192, 144, 32, 0.4); }
.hv-dot.g { background: #409020; box-shadow: 0 0 5px rgba(64, 144, 32, 0.4); }

.hv-title {
    font-size: 10px;
    color: #5a5a5a;
    flex: 1;
    text-align: center;
    letter-spacing: 0.5px;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.hv-title.flash {
    color: #9cbfd4;
    text-shadow: 0 0 8px rgba(47, 115, 151, 0.45);
}

.hv-body {
    padding: 16px;
}

.hv-metric {
    background: linear-gradient(to bottom, #1e1e1e, #161616);
    border: 1px solid #2e2e2e;
    border-radius: 3px;
    padding: 10px 13px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hv-metric-label {
    font-size: 10px;
    color: #606060;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hv-metric-value {
    font-size: 14px;
    font-weight: bold;
    color: #e0e0e0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hv-metric-value.red { color: #e03030; text-shadow: 0 0 8px rgba(192, 32, 32, 0.4); }
.hv-metric-value.green { color: #5ab840; }
.hv-metric-value.warn { color: #d6a638; }

.hv-progress-wrap {
    margin-bottom: 8px;
}

.hv-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #505050;
    margin-bottom: 4px;
}

.hv-progress {
    height: 6px;
    background: #1a1a1a;
    border: 1px solid #252525;
    border-radius: 3px;
    overflow: hidden;
}

.hv-progress-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease, filter 0.5s ease;
}

.hv-progress-bar.r {
    background: linear-gradient(to right, #901818, #c02020);
    box-shadow: 0 0 6px rgba(192, 32, 32, 0.3);
}

.hv-progress-bar.y {
    background: linear-gradient(to right, #8f6818, #c79a2f);
    box-shadow: 0 0 6px rgba(199, 154, 47, 0.26);
}

.hv-progress-bar.g {
    background: linear-gradient(to right, #308020, #50a030);
}

.hv-log {
    margin-top: 14px;
    font-size: 9px;
    color: #404040;
    font-family: monospace;
    line-height: 1.8;
    border-top: 1px solid #222;
    padding-top: 10px;
}

.hv-log span { color: #c02020; }
.hv-log .ok { color: #50a030; }
.hv-log .info { color: #2f7397; }
.hv-log .warn { color: #c79a2f; }
.hv-log .crit { color: #d63f3f; }
.hv-log .dim { color: #303030; }
.hv-log .cur::after {
    content: '█';
    color: #c02020;
    animation: blink 1s step-end infinite;
}

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(to bottom,
        #9a1818 0%, #701010 45%,
        #601010 55%, #721818 100%);
    border-top: 1px solid #4a0808;
    border-bottom: 1px solid #380808;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 15%; bottom: 15%;
    width: 1px;
    background: rgba(0, 0, 0, 0.25);
}

.stat-item:first-child::before { display: none; }
.stat-item:last-child { border-right: none; }

.stat-value {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45),
        0 -1px 0 rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

/* ── SECTION BASE ──────────────────────────────────────────── */
.section {
    padding: 80px 0;
}

.section-gray {
    background: linear-gradient(to bottom, #edf1f6 0%, #e5eaf1 100%);
}


.section-dark {
    background: linear-gradient(to bottom,
        #282828 0%, #1e1e1e 40%, #181818 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 46px;
}

.section-pretitle {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #c02020;
    margin-bottom: 8px;
    display: block;
}

.section-dark .section-pretitle { color: #e03030; }

.section-heading {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
    margin-bottom: 11px;
    line-height: 1.2;
}

.section-dark .section-heading {
    color: #f0f0f0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-lead {
    font-size: 14px;
    color: #6a7a8a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

.section-dark .section-lead { color: #888; }

/* Decorative underline */
.section-underline {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 14px;
}

.section-underline span {
    display: block;
    height: 3px;
    border-radius: 2px;
}

.section-underline span:nth-child(1) {
    width: 32px;
    background: linear-gradient(to right, #901818, #c02020);
}

.section-underline span:nth-child(2) {
    width: 8px;
    background: #c02020;
    opacity: 0.5;
}

.section-underline span:nth-child(3) {
    width: 4px;
    background: #c02020;
    opacity: 0.25;
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card {
    background: linear-gradient(to bottom,
        #ffffff 0%, #f5f8fc 60%, #edf2f7 100%);
    border: 1px solid #c0ccda;
    border-radius: 4px;
    padding: 28px 24px 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, #8e1010, #e03030);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background: linear-gradient(to bottom, #2e2e2e 0%, #1a1a1a 100%);
    border: 1px solid #0a0a0a;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #e03030;
    margin-bottom: 14px;
}

.service-title {
    font-size: 14px;
    font-weight: bold;
    color: #1a2a3a;
    margin-bottom: 8px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-desc {
    font-size: 12px;
    color: #5a6a7a;
    line-height: 1.6;
    margin-bottom: 14px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-list li {
    font-size: 12px;
    color: #4a5a6a;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.service-list li::before {
    content: '›';
    color: #c02020;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.1;
    flex-shrink: 0;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 64px;
    align-items: center;
}

.about-pretitle {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #e03030;
    margin-bottom: 10px;
    display: block;
}

.about-title {
    font-size: 28px;
    font-weight: bold;
    color: #f0f0f0;
    margin-bottom: 14px;
    line-height: 1.22;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.about-body {
    font-size: 13px;
    color: #848484;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.about-feat {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.about-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: linear-gradient(to bottom, #c02020 0%, #8e1010 100%);
    border: 1px solid #6a0808;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}

.about-feat-text strong {
    display: block;
    font-size: 13px;
    color: #e0e0e0;
    margin-bottom: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.about-feat-text span {
    font-size: 12px;
    color: #646464;
    line-height: 1.45;
}

/* About visual panel */
.about-visual {
    background: linear-gradient(135deg, #242424 0%, #161616 100%);
    border: 1px solid #303030;
    border-radius: 5px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.av-head {
    background: linear-gradient(to bottom, #2e2e2e, #222);
    border-bottom: 1px solid #111;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.av-dot-r { width: 10px; height: 10px; border-radius: 50%; background: #c02020; }
.av-dot-y { width: 10px; height: 10px; border-radius: 50%; background: #b08020; }
.av-dot-g { width: 10px; height: 10px; border-radius: 50%; background: #408020; }

.av-head-title {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #484848;
    letter-spacing: 0.4px;
}

.av-body {
    padding: 16px;
}

.av-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.av-kpi {
    background: linear-gradient(to bottom, #1e1e1e, #141414);
    border: 1px solid #282828;
    border-radius: 3px;
    padding: 10px 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.av-kpi-label {
    font-size: 9px;
    color: #505050;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.av-kpi-val {
    font-size: 22px;
    font-weight: bold;
    color: #e0e0e0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.av-kpi-val.red { color: #e03030; }
.av-kpi-val.green { color: #58a838; }

.av-kpi-trend {
    font-size: 9px;
    color: #484848;
    margin-top: 3px;
}

.av-kpi-trend.up { color: #508030; }
.av-kpi-trend.down { color: #903030; }

.av-prog-wrap {
    margin-bottom: 8px;
}

.av-prog-label {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #484848;
    margin-bottom: 4px;
}

.av-prog {
    height: 7px;
    background: #181818;
    border: 1px solid #232323;
    border-radius: 4px;
    overflow: hidden;
}

.av-prog-bar {
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.av-prog-bar.red { background: linear-gradient(to right, #8e1010, #c02020); }
.av-prog-bar.orange { background: linear-gradient(to right, #906010, #c08820); }
.av-prog-bar.green { background: linear-gradient(to right, #307818, #4ea030); }

.av-log {
    border-top: 1px solid #202020;
    padding-top: 10px;
    margin-top: 6px;
    font-family: monospace;
    font-size: 9px;
    color: #383838;
    line-height: 1.9;
}

.av-log .ok { color: #4a8828; }
.av-log .err { color: #882828; }
.av-log .info { color: #286888; }
.av-log .cur::after {
    content: '█';
    color: #c02020;
    animation: blink 1s step-end infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── WHY US ────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-card {
    background: linear-gradient(to bottom, #fff 0%, #f8fafc 100%);
    border: 1px solid #c0ccda;
    border-radius: 4px;
    padding: 28px 22px 24px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #c02020, transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.feature-card:hover::after { opacity: 1; }

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: linear-gradient(to bottom, #282828 0%, #181818 100%);
    border: 1px solid #080808;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e03030;
    font-size: 24px;
    margin: 0 auto 18px;
}

.feature-title {
    font-size: 14px;
    font-weight: bold;
    color: #1a2a3a;
    margin-bottom: 7px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-desc {
    font-size: 12px;
    color: #6a7a8a;
    line-height: 1.55;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.testimonial-card {
    background: linear-gradient(to bottom, #fff 0%, #f8fafc 100%);
    border: 1px solid #c0ccda;
    border-radius: 4px;
    padding: 24px 22px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars i { color: #c09020; font-size: 11px; }

.testimonial-quote {
    font-size: 13px;
    color: #4a5a6a;
    line-height: 1.65;
    font-style: italic;
    flex: 1;
    position: relative;
    padding-left: 18px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0; top: -4px;
    font-size: 30px;
    color: #c02020;
    font-style: normal;
    line-height: 1;
    opacity: 0.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e8eef4;
    padding-top: 12px;
}

.testimonial-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #b03030 0%, #801818 100%);
    border: 2px solid #c04040;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 13px;
    font-weight: bold;
    color: #2a3a4a;
}

.testimonial-role {
    font-size: 11px;
    color: #8a9aaa;
}

/* ── CLIENTS STRIP ─────────────────────────────────────────── */
.clients-strip {
    background: linear-gradient(to bottom, #1e1e1e 0%, #161616 100%);
    border-top: 1px solid #0a0a0a;
    border-bottom: 1px solid #0a0a0a;
    padding: 24px 0;
}

.clients-label {
    text-align: center;
    font-size: 10px;
    color: #c3c3c3;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.clients-logos {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.client-logo {
    padding: 10px 28px;
    border-right: 1px solid #252525;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff; 
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;  
    align-items: center;
    gap: 7px;
    transition: color 0.15s;
}

.client-logo:last-child { border-right: none; }
.client-logo i { color: #cf0101 }

/* ── CATEGORY SELECT ───────────────────────────────────────── */
.cat-select {
    position: relative;
}

.cat-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #fff;
    border: 1px solid #c0ccda;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    color: #2a3a4a;
    transition: border-color 0.15s, box-shadow 0.15s;
    user-select: none;
}

.cat-select-trigger:hover     { border-color: #a0b0c0; }

.cat-select.open .cat-select-trigger {
    border-color: #c02020;
    box-shadow: 0 0 0 2px rgba(192, 32, 32, 0.1);
    border-radius: 4px 4px 0 0;
}

.cat-select.error .cat-select-trigger { border-color: #e03030; }

.cat-select-value           { flex: 1; }
.cat-select-value.placeholder { color: #9aacbc; }

.cat-select-arrow {
    color: #8a9aaa;
    font-size: 11px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.cat-select.open .cat-select-arrow { transform: rotate(180deg); }

.cat-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border: 1px solid #c02020;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 200;
    display: none;
    overflow: hidden;
}

.cat-select.open .cat-select-dropdown { display: block; }

.cat-select-option {
    padding: 10px 12px;
    cursor: pointer;
    border-left: 3px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: background 0.1s, border-color 0.1s;
}

.cat-select-option + .cat-select-option { border-top: 1px solid #eef1f5; }
.cat-select-option:hover                { background: #f5f8fc; border-left-color: #c0ccda; }

.cat-select-option.selected {
    background: #fff5f5;
    border-left-color: #c02020;
}

.cat-select-option-name {
    font-size: 12px;
    font-weight: bold;
    color: #1a2a3a;
    line-height: 1.2;
}

.cat-select-option.selected .cat-select-option-name { color: #c02020; }

.cat-select-option-desc {
    font-size: 11px;
    color: #8a9aaa;
    line-height: 1.4;
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 34px;
    align-items: start;
}

.contact-info-block {
    margin-bottom: 22px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 3px;
    background: linear-gradient(to bottom, #c02020 0%, #8e1010 100%);
    border: 1px solid #6a0808;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8a9aaa;
    margin-bottom: 3px;
}

.contact-info-value {
    font-size: 14px;
    color: #2a3a4a;
    font-weight: bold;
}

.contact-info-sub {
    font-size: 11px;
    color: #7a8a9a;
    margin-top: 1px;
}

.contact-panel {
    background: linear-gradient(to bottom, #fff 0%, #f8fafc 100%);
    border: 1px solid #c0ccda;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.contact-panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(3px);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.contact-panel-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.contact-panel-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.contact-panel-overlay-inner i {
    font-size: 30px;
    color: #c02020;
}

.contact-panel-overlay-inner span {
    font-size: 13px;
    font-weight: bold;
    color: #2a3a4a;
    letter-spacing: 0.3px;
}

.contact-panel-head {
    background: linear-gradient(to bottom, #e5ecf4 0%, #d5dfe9 100%);
    border-bottom: 1px solid #becad6;
    border-radius: 4px 4px 0 0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.contact-panel-head h3 {
    font-size: 13px;
    font-weight: bold;
    color: #2a3a52;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-panel-head i { color: #c02020; font-size: 13px; }

.contact-panel-body {
    padding: 18px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner    { grid-template-columns: 1fr 360px; gap: 40px; }
}

@media (max-width: 960px) {
    .hero-inner    { grid-template-columns: 1fr; }
    .hero-visual   { display: none; }
    .hero-title    { font-size: 38px; }

    .services-grid     { grid-template-columns: repeat(2, 1fr); }
    .about-grid        { grid-template-columns: 1fr; }
    .about-visual      { display: none; }
    .contact-grid      { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid        { grid-template-columns: repeat(2, 1fr); }

    .section { padding: 60px 0; }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .hero-title    { font-size: 30px; }
    .hero-actions    { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section         { padding: 48px 0; }
    .clients-logos   { gap: 0; }
    .client-logo     { padding: 8px 16px; }
}

@media (max-width: 420px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-chips    { flex-direction: column; }
    .stats-grid    { grid-template-columns: 1fr 1fr; }
    .stat-value    { font-size: 30px; }
}
