/* =====================================================
Xecure Networks
STYLE.CSS - PART 1
GLOBAL + HEADER
===================================================== */

:root {

    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --secondary:#0f172a;
    --accent:#06b6d4;
    --success:#10b981;

    --background:#f8fafc;
    --white:#ffffff;

    --text:#1f2937;
    --text-light:#64748b;

    --border:#e2e8f0;

    --shadow:
    0 20px 40px rgba(15,23,42,.08);

    --radius:18px;

    --transition:
    all .35s ease;
}

/* =========================
RESET
========================= */


* {

    margin:0;
    padding:0;
    box-sizing:border-box;

}



html {

    scroll-behavior:smooth;

}



body {

    font-family:'Inter',sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.7;

}



img {

    max-width:100%;
    display:block;

}



a {

    text-decoration:none;
    color:inherit;

}



ul {

    list-style:none;

}



button,
input,
textarea,
select {

    font-family:inherit;

}



/* =========================
CONTAINER
========================= */


.container {

    width:90%;
    max-width:1200px;
    margin:auto;

}



/* =========================
SECTIONS
========================= */


.section {

    padding: 72px 0;

}



.section-header {

    max-width:700px;

    margin:
    0 auto 40px;

    text-align:center;

    animation: fadeUp .8s ease;

}



.section-label {

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:15px;

}



.section-header h2 {

    font-size:42px;

    line-height:1.2;

    color:var(--secondary);

    margin-bottom:20px;

}



.section-header p {

    color:var(--text-light);

    font-size:18px;

}



/* =========================
BUTTONS
========================= */


.btn {

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

}



.btn-primary {

    background:var(--primary);

    color:white;

}



.btn-primary:hover {

    background:var(--primary-dark);

    transform:translateY(-3px);

}



.btn-secondary {

    background:white;

    color:var(--secondary);

    border:1px solid var(--border);

}



.btn-secondary:hover {

    border-color:var(--primary);

    color:var(--primary);

}



/* =========================
HEADER
========================= */


.header {

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:1000;

    background:
    rgba(255,255,255,.85);

    backdrop-filter:
    blur(15px);

    border-bottom:
    1px solid rgba(226,232,240,.7);

}



.navbar {

    height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}



.logo {

    font-size:32px;

    font-weight:800;

    color:var(--secondary);

}



.logo span {

    color:var(--primary);

}



.nav-links {

    display:flex;

    gap:35px;

}



.nav-links a {

    font-weight:500;

    color:var(--text);

    transition:var(--transition);

}



.nav-links a:hover {

    color:var(--primary);

}



.menu-toggle {

    display:none;

    background:none;

    border:0;

    font-size:25px;

    cursor:pointer;

}
/* =====================================================
HERO SECTION
===================================================== */


.hero {

    padding-top:130px;
    padding-bottom:70px;

    background:
    linear-gradient(
        135deg,
        #f8fafc,
        #e0f2fe
    );

    overflow:hidden;

}



.hero-container {

    display:grid;

    grid-template-columns:
    1fr 450px;

    align-items:center;

    gap:70px;

}



.hero-badge {

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:
    rgba(37,99,235,.1);

    color:var(--primary);

    padding:
    10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}



.hero-content h1 {

    font-size:60px;

    line-height:1.1;

    letter-spacing:-2px;

    color:var(--secondary);

    margin-bottom:25px;

}



.hero-content p {

    font-size:19px;

    color:var(--text-light);

    max-width:600px;

    margin-bottom:35px;

}



.hero-actions {

    display:flex;

    gap:20px;

}



/* =========================
HERO DASHBOARD
========================= */


.dashboard-card {

    background:white;

    padding:35px;

    border-radius:22px;

    box-shadow:var(--shadow);

    border:1px solid var(--border);

}



.dashboard-header {

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}



.dashboard-header h3 {

    color:var(--secondary);

}



.online {

    background:#dcfce7;

    color:#15803d;

    padding:
    5px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}



.metric {

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:
    1px solid var(--border);

}



.metric div {

    display:flex;

    gap:12px;

    align-items:center;

    color:var(--text-light);

}



.metric strong {

    color:var(--secondary);

}



/* =====================================================
STATS SECTION
===================================================== */


.stats {

    background:var(--secondary);

    padding:36px 0;

}



.stats-grid {

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

}



.stat-box {

    text-align:center;

    color:white;

    padding:20px;

}



.stat-box i {

    font-size:35px;

    color:var(--accent);

    margin-bottom:15px;

}



.stat-box h3 {

    font-size:42px;

    line-height:1;

    margin-bottom:10px;

}



.stat-box p {

    color:#cbd5e1;

    font-size:16px;

}



/* =====================================================
SERVICES SECTION
===================================================== */


.services {

    background:white;
    

}



.services-grid {

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}



.service-card {

    background:var(--background);

    border:
    1px solid var(--border);

    border-radius:var(--radius);

    padding:35px;

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}



.service-card::before {

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:
    rgba(37,99,235,.08);

    border-radius:50%;

    top:-90px;

    right:-50px;

}



.service-card:hover {

    transform:translateY(-10px);

    box-shadow:var(--shadow);

    border-color:transparent;

}



.service-icon {

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    background:
    rgba(37,99,235,.1);

    color:var(--primary);

    font-size:28px;

    margin-bottom:25px;

}



.service-card h3 {

    font-size:24px;

    color:var(--secondary);

    margin-bottom:15px;

}



.service-card p {

    color:var(--text-light);

    margin-bottom:25px;

}



.service-card a {

    color:var(--primary);

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:8px;

}



.service-card a i {

    transition:var(--transition);

}



.service-card a:hover i {

    transform:translateX(5px);

}




/* =====================================================
ABOUT SECTION
===================================================== */


.about {

    background:#f8fafc;

}



.about-grid {

    display:grid;

    grid-template-columns:
    1fr 450px;

    gap:80px;

    align-items:center;

}



.about-content h2 {

    font-size:45px;

    line-height:1.2;

    color:var(--secondary);

    margin-bottom:25px;

}



.about-content p {

    color:var(--text-light);

    font-size:18px;

    margin-bottom:20px;

}



.about-features {

    margin-top:35px;

}



.feature-item {

    display:flex;

    gap:18px;

    margin-bottom:25px;

}



.feature-item i {

    color:var(--success);

    font-size:22px;

    margin-top:5px;

}



.feature-item h4 {

    font-size:18px;

    color:var(--secondary);

    margin-bottom:5px;

}



.feature-item p {

    font-size:15px;

    margin:0;

}



/* =========================
ABOUT SECURITY CARD
========================= */


.about-card {

    background:var(--secondary);

    color:white;

    padding:40px;

    border-radius:25px;

    box-shadow:var(--shadow);

}



.card-header {

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:35px;

    font-size:20px;

    font-weight:600;

}



.card-header i {

    color:var(--accent);

    font-size:30px;

}



.security-status {

    display:flex;

    flex-direction:column;

    gap:20px;

}



.security-status div {

    background:
    rgba(255,255,255,.08);

    padding:18px;

    border-radius:12px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}



.security-status span {

    color:#cbd5e1;

}



.security-status strong {

    color:#4ade80;

}



/* =====================================================
   OUR PROCESS  —  redesign
===================================================== */

.process {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* connecting line behind cards */
.process-grid::before {
    content: "";
    position: absolute;
    top: 52px;
    left: calc(12.5% + 26px);
    right: calc(12.5% + 26px);
    height: 2px;
    background: linear-gradient(90deg, #1268c4, #43a9ff, #7c3aed, #059669);
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px 36px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.process-card:hover {
    transform: none;
    box-shadow: none;
}

/* step number circle */
.process-number {
    position: static;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #1268c4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #1268c4;
    margin-bottom: 28px;
    box-shadow: 0 0 0 6px #f0f7ff;
    flex-shrink: 0;
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

/* unique color per step */
.process-card:nth-child(1) .process-number { border-color: #1268c4; color: #1268c4; box-shadow: 0 0 0 6px #eef5ff; }
.process-card:nth-child(2) .process-number { border-color: #43a9ff; color: #43a9ff; box-shadow: 0 0 0 6px #e8f6ff; }
.process-card:nth-child(3) .process-number { border-color: #7c3aed; color: #7c3aed; box-shadow: 0 0 0 6px #f4f0ff; }
.process-card:nth-child(4) .process-number { border-color: #059669; color: #059669; box-shadow: 0 0 0 6px #e8faf4; }

.process-card:hover .process-number {
    background: currentColor;
    color: #ffffff !important;
}

.process-card:nth-child(1):hover .process-number { background: #1268c4; }
.process-card:nth-child(2):hover .process-number { background: #43a9ff; }
.process-card:nth-child(3):hover .process-number { background: #7c3aed; }
.process-card:nth-child(4):hover .process-number { background: #059669; }

/* icon box below number */
.process-card i {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    color: #475569;
    font-size: 22px;
    margin: 0 auto 18px;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.process-card:nth-child(1):hover i { background: #eef5ff; color: #1268c4; border-color: #c8dff5; }
.process-card:nth-child(2):hover i { background: #e8f6ff; color: #43a9ff; border-color: #bde6ff; }
.process-card:nth-child(3):hover i { background: #f4f0ff; color: #7c3aed; border-color: #d5c7f8; }
.process-card:nth-child(4):hover i { background: #e8faf4; color: #059669; border-color: #a7f3d0; }

.process-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0 0 10px;
}

.process-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.7;
}



/* =====================================================
TRUST BANNER
===================================================== */


.trust-banner {

    padding:50px 0;

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        #1e3a8a
    );

}



.trust-content {

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}



.trust-content h2 {

    color:white;

    font-size:38px;

    margin-bottom:10px;

}



.trust-content p {

    color:#cbd5e1;

    font-size:18px;

}
/* =====================================================
INDUSTRIES
===================================================== */


.industries {

    background:var(--background);

}



.industries-grid {

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}



.industry-card {

    background:white;

    padding:35px;

    border-radius:var(--radius);

    border:1px solid var(--border);

    transition:var(--transition);

}



.industry-card:hover {

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}



.industry-icon {

    width:65px;

    height:65px;

    border-radius:15px;

    background:
    rgba(6,182,212,.12);

    color:var(--accent);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

}



.industry-card h3 {

    font-size:23px;

    color:var(--secondary);

    margin-bottom:12px;

}



.industry-card p {

    color:var(--text-light);

}



/* =====================================================
   C-TPAT SECTION
===================================================== */

.ctpat-section {
    background: #f8fafc;
}

/* ── HEADER ── */
.ctpat-header {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: center;
    margin-bottom: 64px;
}

.ctpat-header-left h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    color: #0d1b2a;
    line-height: 1.15;
    margin: 14px 0 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.ctpat-accent {
    color: #1268c4;
}

.ctpat-header-left > p {
    color: #4b5563;
    font-size: 16.5px;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 28px;
}

.ctpat-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.ctpat-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: #eef7ff;
    border: 1px solid #c7dff5;
    border-radius: 20px;
    color: #1268c4;
    font-size: 13px;
    font-weight: 600;
}

.ctpat-badge i {
    font-size: 12px;
    color: #16a34a;
}

.ctpat-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    background: #1268c4;
    color: #ffffff;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ctpat-cta-btn:hover {
    background: #0d56a8;
    box-shadow: 0 8px 24px rgba(18, 104, 196, .30);
    transform: translateY(-2px);
    color: #ffffff;
}

.ctpat-cta-btn i {
    font-size: 12px;
    transition: transform .2s ease;
}

.ctpat-cta-btn:hover i {
    transform: translateX(4px);
}

/* ── CERT CARD ── */
.ctpat-cert-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(15, 35, 60, .08);
}

.ctpat-cert-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f4f8;
    margin-bottom: 24px;
}

.ctpat-cert-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1268c4, #0d9eea);
    border-radius: 12px;
    color: #ffffff;
    font-size: 22px;
}

.ctpat-cert-top strong {
    display: block;
    color: #0d1b2a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.ctpat-cert-top span {
    color: #64748b;
    font-size: 13px;
}

.ctpat-cert-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.ctpat-cert-stat {
    text-align: center;
    padding: 14px 10px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e8edf3;
}

.ctpat-cert-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1268c4;
    line-height: 1;
    margin-bottom: 5px;
}

.ctpat-cert-stat span {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.ctpat-cert-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #166534;
    font-size: 13px;
    font-weight: 600;
}

.ctpat-cert-footer i {
    color: #16a34a;
    font-size: 14px;
}

/* ── GRID LABEL ── */
.ctpat-grid-label {
    text-align: center;
    margin-bottom: 28px;
}

.ctpat-grid-label span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ctpat-grid-label span::before,
.ctpat-grid-label span::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 1px;
    background: #cbd5e1;
}

/* ── REQUIREMENTS GRID ── */
.ctpat-requirements {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 64px;
}

.ctpat-req-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 26px 24px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.ctpat-req-card:hover {
    box-shadow: 0 10px 30px rgba(18, 104, 196, .09);
    transform: translateY(-4px);
    border-color: #b8d5f5;
}
.ctpat-req-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ctpat-req-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.ctpat-req-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0 0 8px;
    line-height: 1.3;
    
    
}

.ctpat-req-body p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 14px;
}

.ctpat-req-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1268c4;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}

.ctpat-req-link i {
    font-size: 10px;
    transition: transform .2s ease;
}

.ctpat-req-card:hover .ctpat-req-link i {
    transform: translateX(4px);
}

/* ── PROCESS STRIP ── */
.ctpat-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 48px;
    background: linear-gradient(135deg, #07111f 0%, #0d2140 100%);
    border-radius: 16px;
}

.ctpat-process-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.ctpat-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 104, 196, .25);
    border: 1px solid rgba(18, 104, 196, .45);
    color: #4da3ff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
}

.ctpat-process-step h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ctpat-process-step p {
    color: rgba(255,255,255,.60);
    font-size: 13px;
    line-height: 1.6;
}

.ctpat-process-arrow {
    color: rgba(255,255,255,.25);
    font-size: 16px;
    flex-shrink: 0;
    padding: 0 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .ctpat-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ctpat-cert-card {
        max-width: 500px;
    }
    .ctpat-requirements {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ctpat-requirements {
        grid-template-columns: 1fr;
    }
    .ctpat-process {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }
    .ctpat-process-arrow {
        transform: rotate(90deg);
    }
    .ctpat-cert-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   C-TPAT INFO BOX
========================= */

.ctpat-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 700px;
    margin: 24px auto 0;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.ctpat-info-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    background: #eff6ff;
    color: #2563eb;
    border-radius: 7px;
    font-size: 14px;
}

.ctpat-info-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ctpat-info-content h3 {
    margin: 0;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.ctpat-info-content p {
    margin: 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.4;
}

.ctpat-info-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #2563eb;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.ctpat-info-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.ctpat-info-link i {
    font-size: 9px;
}


/* Mobile */
@media (max-width: 600px) {

    .ctpat-info-box {
        align-items: flex-start;
        padding: 11px 12px;
    }

    .ctpat-info-content {
        display: block;
    }

    .ctpat-info-content h3 {
        margin-bottom: 3px;
    }

    .ctpat-info-content p {
        margin-bottom: 5px;
    }

}
/* =========================
   C-TPAT SMALL DISCLAIMERS
========================= */

.ctpat-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 18px;
    padding: 9px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.5;
}

.ctpat-disclaimer i {
    color: #64748b;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ctpat-disclaimer span {
    max-width: 680px;
}


/* Bottom note */

.ctpat-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
    padding: 8px 12px;
    color: #94a3b8;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
}

.ctpat-footer-note i {
    font-size: 10px;
    flex-shrink: 0;
}

.ctpat-footer-note p {
    margin: 0;
}

/* =====================================================
   TECH PARTNERS MARQUEE STRIP
===================================================== */

.partners-strip {
    background: #ffffff;
    border-top:    1px solid #edf1f7;
    border-bottom: 1px solid #edf1f7;
    padding: 0;
    overflow: hidden;
}

.partners-strip-header {
    text-align: center;
    padding: 36px 20px 22px;
}

.partners-strip-header p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.partners-strip-header p::before,
.partners-strip-header p::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #cbd5e1;
}

/* ── Marquee track ── */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    padding: 12px 0 36px;
}

/* fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Each logo pill ── */
.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 18px;
    padding: 14px 32px;
    height: 72px;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.marquee-item:hover {
    border-color: #b8d5f5;
    box-shadow: 0 6px 20px rgba(18, 104, 196, .08);
    transform: translateY(-3px);
}

/* logo image inside pill */
.marquee-item img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(1) opacity(.65);
    transition: filter .25s ease;
}

.marquee-item:hover img {
    filter: grayscale(0) opacity(1);
}

/* text fallback (for logos without image) */
.marquee-item span {
    font-size: 17px;
    font-weight: 800;
    color: #64748b;
    white-space: nowrap;
    letter-spacing: -.3px;
    transition: color .25s ease;
}

.marquee-item:hover span {
    color: #1268c4;
}


/* =====================================================
PARTNERS
===================================================== */


.partners {

    background:white;

}



.partners-grid {

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}



.partner-logo {

     height:90px;

    background:white;

    border:1px solid var(--border);

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    font-size:18px;

    font-weight:700;

    color:#64748b;

    transition:var(--transition);

}



.partner-logo:hover {

    color:var(--primary);

    border-color:var(--primary);

    transform:translateY(-5px);

    box-shadow:
     0 15px 35px rgba(37,99,235,.12);

}

.testimonials {
    background: #f8fafc; 
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch; 
}

.testimonial-card {
    position: relative;
    background: #ffffff;
    padding: 40px 32px 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 26px;
    color: #f1f5f9;
    pointer-events: none;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    color: #e2e8f0;
}

.stars {
    color: #ffb800; 
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #4b5563; 
    font-size: 15px;
    line-height: 1.65;
    font-style: normal; 
    margin-bottom: 28px;
    flex: 1;
}

.client {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e0f2fe; 
    color: #1268c4; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.client h4 {
    color: #0d1b2a;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px;
}

.client span {
    color: #64748b;
    font-size: 12.5px;
    font-weight: 500;
    display: block;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.testimonial-card.highlighted-card {
    border-color: #b8d5f5;
    box-shadow: 0 10px 30px rgba(18, 104, 196, 0.04);
}
.testimonial-card.highlighted-card .client-avatar {
    background: #1268c4;
    color: #ffffff;
}

@media(max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}




/* =====================================================
FAQ
===================================================== */


.faq {

    background:white;

}



.faq-container {

    max-width:850px;

    margin:auto;

}



.faq-item {

    border-bottom:
    1px solid var(--border);

}



.faq-question {

    width:100%;

    padding:25px 0;

    background:none;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    color:var(--secondary);

    text-align:left;

}



.faq-question i {

    color:var(--primary);

    transition:var(--transition);

}



.faq-answer {

    max-height:0;

    overflow:hidden;

    transition:
    max-height .4s ease;

}



.faq-answer p {

    color:var(--text-light);

    padding-bottom:25px;

}



/* =====================================================
CONTACT
===================================================== */


.contact {

    background:var(--background);

}



.contact-grid {

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:start;

}



.contact-info h2 {

    font-size:45px;

    color:var(--secondary);

    line-height:1.2;

    margin:20px 0;

}



.contact-info > p {

    color:var(--text-light);

    font-size:18px;

    margin-bottom:35px;

}



.contact-item {

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:25px;

}



.contact-item i {

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:
    rgba(37,99,235,.1);

    color:var(--primary);

    font-size:20px;

}



.contact-item h4 {

    color:var(--secondary);

    margin-bottom:3px;

}



.contact-item p {

    color:var(--text-light);

}



/* =========================
CONTACT FORM
========================= */


.contact-form {

    background:white;

    padding:40px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}



.form-group {

    margin-bottom:20px;

}



.form-group input,
.form-group textarea,
.form-group select {

    width:100%;

    padding:16px 18px;

    border:1px solid var(--border);

    border-radius:12px;

    outline:none;

    font-size:15px;

    color:var(--text);

    background:white;

    transition:var(--transition);

}



.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:var(--primary);

    box-shadow:
    0 0 0 4px rgba(37,99,235,.1);

}



.form-group textarea {

    resize:none;

}



.contact-form button {

    width:100%;

    border:none;

    font-size:16px;

}



/* =====================================================
FOOTER
===================================================== */


.footer {

    background:var(--secondary);

    color:white;

    padding-top:56px;

}



.footer-grid {

    display:grid;

    grid-template-columns:
    1.5fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:36px;

}



.footer-brand .logo {

    color:white;

    display:inline-block;

    margin-bottom:20px;

}



.footer-brand p {

    color:#cbd5e1;

    max-width:320px;

}



.social-links {

    display:flex;

    gap:12px;

    margin-top:25px;

}



.social-links a {

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(255,255,255,.1);

    color:white;

    transition:var(--transition);

}



.social-links a:hover {

    background:var(--primary);

    transform:translateY(-4px);

}



.footer-column h4 {

    color:white;

    font-size:18px;

    margin-bottom:25px;

}



.footer-column a {

    display:block;

    color:#cbd5e1;

    margin-bottom:12px;

    transition:var(--transition);

}



.footer-column a:hover {

    color:white;

    transform:translateX(5px);

}



.footer-column p {

    color:#cbd5e1;

    margin-bottom:10px;

}



.footer-bottom {

    border-top:
    1px solid rgba(255,255,255,.1);

    padding:25px 0;

    text-align:center;

}



.footer-bottom p {

    color:#94a3b8;

    font-size:14px;

}



.whatsapp-btn {

    position:fixed;

    right:26px;

    bottom:80px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25d366;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    z-index:999;

    box-shadow:
    0 10px 30px rgba(0,0,0,.2);

    transition:var(--transition);

}



.whatsapp-btn:hover {

    transform:
    translateY(-5px)
    scale(1.05);

}



.back-top {

    position:fixed;

    right:30px;

    bottom:25px;

    width:45px;

    height:45px;

    border-radius:50%;

    border:none;

    background:var(--primary);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;

}



.back-top.active {

    opacity:1;

    visibility:visible;

}



.back-top:hover {

    background:var(--primary-dark);

}


@keyframes fadeUp {

    from {

        opacity:0;

        transform:translateY(30px);

    }

    to {

        opacity:1;

        transform:translateY(0);

    }

}



@keyframes fadeLeft {

    from {

        opacity:0;

        transform:translateX(-40px);

    }

    to {

        opacity:1;

        transform:translateX(0);

    }

}



@keyframes fadeRight {

    from {

        opacity:0;

        transform:translateX(40px);

    }

    to {

        opacity:1;

        transform:translateX(0);

    }

}
.hero-content {

    animation: fadeLeft 1s ease;

}


.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition: .8s ease;

}


.reveal.show {

    opacity: 1;

    transform: translateY(0);

}



.nav-support {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1268c4;
}


.nav-support::before {

    content: "";

    width: 9px;
    height: 9px;

    background: var(--status-color, #10b981);

    border-radius: 50%;

    box-shadow:
    0 0 8px var(--status-shadow, rgba(16,185,129,.6));

    display: inline-block;

}



.text-center {

    text-align:center;

}



.hidden {

    display:none;

}



.mt-20 {

    margin-top:20px;

}



.mb-20 {

    margin-bottom:20px;

}
/* =====================================================
RESPONSIVE DESIGN
===================================================== */


/* =========================
LARGE TABLETS
========================= */


@media(max-width:1100px){


    .hero-container {

        grid-template-columns:1fr;

        text-align:center;

    }


    .hero-content p {

        margin-left:auto;

        margin-right:auto;

    }


    .hero-actions {

        justify-content:center;

    }


    .hero-dashboard {

        max-width:500px;

        margin:auto;

    }


    .about-grid {

        grid-template-columns:1fr;

        gap:50px;

    }


    .about-card {

        max-width:500px;

        margin:auto;

    }


    .process-grid {

        grid-template-columns:
        repeat(2,1fr);

    }


    .services-grid {

        grid-template-columns:
        repeat(2,1fr);

    }


    .industries-grid {

        grid-template-columns:
        repeat(2,1fr);

    }


    .contact-grid {

        grid-template-columns:1fr;

    }


    .footer-grid {

        grid-template-columns:
        repeat(2,1fr);

    }


}



/* =========================
TABLETS
========================= */


@media(max-width:900px){


    .navbar {

        height:80px;

    }


    .nav-links {


        position:fixed;

        top:80px;

        left:-100%;

        width:100%;

        height:
        calc(100vh - 80px);


        background:white;


        flex-direction:column;


        align-items:center;


        justify-content:center;


        gap:35px;


        transition:.4s ease;


    }



    .nav-links.active {

        left:0;

    }



    .menu-toggle {

        display:block;

    }



    .navbar > .btn {

        display:none;

    }



    .hero-content h1 {

        font-size:48px;

    }



    .stats-grid {

        grid-template-columns:
        repeat(2,1fr);

    }



    .partners-grid {

        grid-template-columns:
        repeat(3,1fr);

    }



    .testimonial-grid {

        grid-template-columns:1fr;

    }


}



/* =========================
MOBILE
========================= */


@media(max-width:600px){


    .container {

        width:92%;

    }



    .section {

        padding:50px 0;

    }



    .section-header h2 {

        font-size:32px;

    }



    .section-header p {

        font-size:16px;

    }



    .logo {

        font-size:26px;

    }



    .hero-content h1 {

        font-size:38px;

        letter-spacing:-1px;

    }



    .hero-content p {

        font-size:16px;

    }



    .hero-actions {

        flex-direction:column;

        width:100%;

    }



    .hero-actions .btn {

        width:100%;

    }



    .dashboard-card {

        padding:25px;

    }



    .stats-grid {

        grid-template-columns:
        1fr;

    }



    .stat-box h3 {

        font-size:32px;

    }



    .services-grid {

        grid-template-columns:1fr;

    }



    .service-card {

        padding:30px;

    }



    .about-content h2 {

        font-size:34px;

    }



    .process-grid {

        grid-template-columns:1fr;

    }



    .trust-content {

        flex-direction:column;

        text-align:center;

    }



    .trust-content h2 {

        font-size:30px;

    }



    .industries-grid {

        grid-template-columns:1fr;

    }



    .partners-grid {

        grid-template-columns:
        repeat(2,1fr);

    }



    .contact-info h2 {

        font-size:34px;

    }



    .contact-form {

        padding:25px;

    }



    .footer-grid {

        grid-template-columns:1fr;

        text-align:center;

    }



    .footer-brand p {

        margin:auto;

    }



    .social-links {

        justify-content:center;

    }



    .whatsapp-btn {

        right:20px;

        bottom:85px;

        width:55px;

        height:55px;

    }



    .back-top {

        right:20px;

    }

}
/* =====================================================
   OUR SERVICES  —  redesign
===================================================== */

.services {
    background: #f8fafc;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.included-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 28px 28px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    text-decoration: none;
    color: inherit;
}

/* coloured top bar per card */
.included-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--card-accent, #1268c4);
    border-radius: 14px 14px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.included-card:hover::before {
    transform: scaleX(1);
}

.included-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(18, 104, 196, .10);
    border-color: #c8dff5;
}

/* unique accent per card position */
.included-card:nth-child(1) { --card-accent: #1268c4; }
.included-card:nth-child(2) { --card-accent: #7c3aed; }
.included-card:nth-child(3) { --card-accent: #0891b2; }
.included-card:nth-child(4) { --card-accent: #059669; }
.included-card:nth-child(5) { --card-accent: #d97706; }
.included-card:nth-child(6) { --card-accent: #e11d48; }

/* service number */
.included-card .card-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 11px;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: 1px;
}

/* icon */
.included-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--card-accent, #1268c4) 12%, transparent);
    color: var(--card-accent, #1268c4);
    font-size: 22px;
    margin-bottom: 20px;
    transition: background .25s ease, transform .25s ease;
}

.included-card:hover .included-icon {
    background: var(--card-accent, #1268c4);
    color: #ffffff;
    transform: scale(1.08);
}

.included-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0 0 10px;
    line-height: 1.35;
}

.included-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1;
}

.included-card > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--card-accent, #1268c4);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
}

.included-card > a i {
    font-size: 11px;
    transition: transform .2s ease;
}

.included-card > a:hover i {
    transform: translateX(4px);
}

.included-card:active {
    transform: translateY(1px);
}





/* =====================================================
EXISTING CLIENTS SECTION
===================================================== */

.remote-support {
    background: #ffffff; 
    padding: 90px 0;
}

.support-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}


.support-left h2 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.support-left > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 40px;
}

.support-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eaf5ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.support-feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 4px;
}

.support-feature-item p {
    font-size: 13.5px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.support-box-premium {
    width: 100%;
    max-width: 440px;
    background: #0f172a; 
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.support-box-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.support-box-header span {
    color: #34d399;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.radar-pulse {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.radar-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #10b981;
    border-radius: 50%;
    top: 0; left: 0;
    animation: radarBlink 2s infinite ease-out;
}

@keyframes radarBlink {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.support-icon-premium {
    font-size: 42px;
    color: #38bdf8;
    margin-bottom: 20px;
}

.support-box-premium h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.support-box-premium p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 10px;
}

.btn-support-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-support-action:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
    color: #ffffff;
}

.support-box-footer {
    display: block;
    margin-top: 24px;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.support-box-footer i {
    font-size: 10px;
    margin-right: 3px;
}

@media(max-width: 991px) {
    .support-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .support-left {
        text-align: center;
    }
    .support-left > p {
        margin-left: auto;
        margin-right: auto;
    }
    .support-feature-item {
        text-align: left;
    }
    .support-right {
        width: 100%;
    }
    .support-box-premium {
        max-width: 100%;
    }
}

/* ==================================
   SECURITY DASHBOARD ENHANCEMENTS
================================== */


.health-box {

    margin-top:25px;

    padding-top:20px;

    border-top:1px solid var(--border);

}



.health-title {

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:12px;

    color:var(--text-light);

    font-size:14px;

    font-weight:600;

}



.health-title strong {

    color:#16a34a;

    font-size:16px;

}



.health-bar {

    width:100%;

    height:8px;

    background:#e2e8f0;

    border-radius:20px;

    overflow:hidden;

}



.health-bar span {

    display:block;

    width:98%;

    height:100%;

    background:

    linear-gradient(
        90deg,
        #10b981,
        #22c55e
    );

    border-radius:20px;

}



/* STATUS */


.status-line {

    display:flex;

    align-items:center;

    gap:10px;

    color:#15803d;

    font-weight:600;

    font-size:14px;

}



.status-line span {

    width:10px;

    height:10px;

    background:#22c55e;

    border-radius:50%;

    box-shadow:
    0 0 12px #22c55e;

}



.dashboard-footer small {

    display:block;

    margin-top:10px;

    color:#64748b;

    font-size:13px;

}
/* =========================================
   HEADER  —  dark bar 
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition:
        background .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

/* ── glass on scroll (dark tint — works over any bg) ── */
.site-header.scrolled {
    background: rgba(15, 15, 15, 0.82);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    border-bottom-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.30);
}

/* ── glass on scroll for dark-hero pages (index): light glass ── */
.dark-hero-page .site-header.scrolled {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

/* ══════════════════════════════════════════════════════
   LIGHT MODE  — páginas con hero claro
   Se activa añadiendo .header-light al <header>
══════════════════════════════════════════════════════ */

/* links oscuros sobre fondo transparente claro */
.site-header.header-light .nav-link {
    color: #172033;
}

.site-header.header-light .nav-link:hover,
.site-header.header-light .has-mega-menu:hover > .nav-link,
.site-header.header-light .has-mega-menu.active > .nav-link {
    color: #1268c4;
}

.site-header.header-light .nav-link::after {
    background: #1268c4;
}

/* hamburger oscuro en light mode */
.site-header.header-light .menu-toggle {
    color: #172033;
    border-color: rgba(0, 0, 0, 0.18);
}

.site-header.header-light .menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.28);
}

/* CTA mantiene su color en ambos modos — no necesita override */

/* una vez que hay scroll: glass oscuro + links blancos (páginas internas) */
.site-header.header-light.scrolled .nav-link {
    color: rgba(255, 255, 255, .85);
}

.site-header.header-light.scrolled .nav-link:hover,
.site-header.header-light.scrolled .has-mega-menu:hover > .nav-link,
.site-header.header-light.scrolled .has-mega-menu.active > .nav-link {
    color: #ffffff;
}

.site-header.header-light.scrolled .menu-toggle {
    color: rgba(255, 255, 255, .9);
    border-color: rgba(255, 255, 255, .18);
}

.site-header.header-light.scrolled .menu-toggle:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .35);
}

/* ── dark-hero-page (index): al scroll → glass claro + links oscuros + logo negro ── */

@media (min-width: 992px) {
    .dark-hero-page .site-header.scrolled .nav-link {
        color: #172033;
    }
    .dark-hero-page .site-header.scrolled .nav-link:hover,
    .dark-hero-page .site-header.scrolled .has-mega-menu:hover > .nav-link,
    .dark-hero-page .site-header.scrolled .has-mega-menu.active > .nav-link {
        color: #1268c4;
    }
    .dark-hero-page .site-header.scrolled .nav-link::after {
        background: #1268c4;
    }
}

/* El botón de hamburguesa (menu-toggle) sí debe cambiar a oscuro en móvil al hacer scroll */
.dark-hero-page .site-header.scrolled .menu-toggle {
    color: #172033;
    border-color: rgba(0, 0, 0, 0.18);
}
.dark-hero-page .site-header.scrolled .menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.28);
}

/* logo swap en index al scroll: negro visible, blanco oculto */
.dark-hero-page .site-header.scrolled .logo-dark {
    opacity: 1 !important;
    pointer-events: auto !important;
}
.dark-hero-page .site-header.scrolled .logo-white {
    opacity: 0 !important;
    pointer-events: none !important;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}


/* =========================================
   LOGO
========================================= */

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-container img {
    max-width: 210px;
    height: auto;
    display: block;
    transition: opacity .35s ease;
}

/* dark logo: visible by default (light hero pages) */
.logo-dark {
    opacity: 1;
}

/* white logo: hidden by default */
.logo-white {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
}

/* ── dark-hero pages (no .header-light): show white, hide dark ── */
.site-header:not(.header-light) .logo-dark {
    opacity: 0;
    pointer-events: none;
}
.site-header:not(.header-light) .logo-white {
    opacity: 1;
    pointer-events: auto;
}

/* ── on scroll: always white logo ── */
.site-header.scrolled .logo-dark {
    opacity: 0 !important;
    pointer-events: none !important;
}
.site-header.scrolled .logo-white {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* ── dark-hero-page on scroll: dark logo + dark links ── */
.dark-hero-page .site-header.scrolled .logo-dark {
    opacity: 1 !important;
    pointer-events: auto !important;
}
.dark-hero-page .site-header.scrolled .logo-white {
    opacity: 0 !important;
    pointer-events: none !important;
}


/* =========================================
   MAIN NAV
========================================= */

.main-nav {
    display: flex;
    align-items: center;
    margin-left: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: static;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 76px;
    padding: 0 15px;
    color: rgba(255,255,255,.82);
    background: transparent;
    border: 0;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: .01em;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s ease;
}

.nav-link:hover,
.has-mega-menu:hover > .nav-link,
.has-mega-menu.active > .nav-link {
    color: #ffffff;
}

/* subtle active indicator underline */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 18px;
    left: 15px;
    right: 15px;
    height: 2px;
    border-radius: 2px;
    background: #4da3ff;
    transform: scaleX(0);
    transition: transform .2s ease;
}

.nav-link:hover::after,
.has-mega-menu:hover > .nav-link::after,
.has-mega-menu.active > .nav-link::after {
    transform: scaleX(1);
}


/* =========================================
   SERVICES DROPDOWN ARROW
========================================= */

.services-toggle i {
    font-size: 10px;
    opacity: .7;
    transition: transform .25s ease, opacity .2s ease;
}

.has-mega-menu:hover .services-toggle i,
.has-mega-menu.active .services-toggle i {
    transform: rotate(180deg);
    opacity: 1;
}
 

/* =========================================
   MEGA MENU  —  white panel below dark bar
========================================= */

.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;

    /* white panel — full contrast with dark header */
    background: #ffffff;
    border-top: 3px solid #1268c4;

    box-shadow:
        0 24px 60px rgba(7, 17, 31, 0.274),
        0 4px 12px  rgba(7,17,31,.15);

    padding: 40px max(32px, calc((100vw - 1220px) / 2)) 44px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease;
}

/* desktop hover open */
@media (min-width: 992px) {
    .has-mega-menu:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}


/* =========================================
   MEGA MENU HEADER
========================================= */

.mega-menu-header {
    max-width: 1220px;
    margin: 0 auto 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f3f7;
}

.mega-menu-header-text {
    flex: 1;
}

.mega-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #1268c4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.mega-menu-header h2 {
    margin: 0 0 6px;
    color: #0d1b2a;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.mega-menu-header p {
    max-width: 560px;
    margin: 0;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.6;
}

/* "View all" link in header */
.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    padding: 10px 18px;
    border: 1px solid #d8e5f5;
    border-radius: 6px;
    color: #1268c4;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.mega-view-all:hover {
    background: #f0f7ff;
    border-color: #a8ccef;
    transform: translateY(-1px);
}

.mega-view-all i {
    font-size: 10px;
    transition: transform .2s ease;
}

.mega-view-all:hover i {
    transform: translateX(3px);
}


/* =========================================
   SERVICES GRID  (inside mega menu)
========================================= */

.mega-menu .services-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}


/* =========================================
   SERVICE CARD  —  clean flat style
========================================= */

.service-menu-card {
    display: flex;
    gap: 15px;
    padding: 18px 20px;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #edf1f7;
    border-radius: 10px;
    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        transform .22s ease;
}

.service-menu-card:hover {
    background: #ffffff;
    border-color: #b8d5f5;
    box-shadow: 0 6px 22px rgba(18,104,196,.1);
    transform: translateY(-3px);
}


/* =========================================
   SERVICE ICON
========================================= */

.service-menu-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1268c4;
    background: #e8f3ff;
    border-radius: 8px;
    font-size: 17px;
    transition: background .2s ease, color .2s ease;
}

.service-menu-card:hover .service-menu-icon {
    background: #1268c4;
    color: #ffffff;
}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-menu-content {
    min-width: 0;
}

.service-menu-content h3 {
    margin: 0 0 5px;
    color: #0d1b2a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.service-menu-content p {
    margin: 0 0 10px;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.55;
}

.service-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1268c4;
    font-size: 12.5px;
    font-weight: 700;
}

.service-menu-link i {
    font-size: 10px;
    transition: transform .2s ease;
}

.service-menu-card:hover .service-menu-link i {
    transform: translateX(4px);
}


/* =========================================
   DESKTOP CTA  —  vibrant blue pill
========================================= */

.desktop-cta {
    margin-left: auto;
    flex-shrink: 0;
}

.desktop-cta.btn.btn-primary {
    padding: 11px 22px;
    background: #1268c4;
    border: 1px solid #1268c4;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        background .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.desktop-cta.btn.btn-primary:hover {
    background: #0d56a8;
    box-shadow: 0 6px 20px rgba(18,104,196,.38);
    transform: translateY(-1px);
    color: #ffffff;
}


/* =========================================
   HAMBURGER BUTTON  (dark bg aware)
========================================= */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.9);
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 7px;
    font-size: 19px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.35);
}

.mobile-nav-cta {
    display: none;
}


/* =========================================
   TABLET / MOBILE  ≤ 991px
========================================= */

@media (max-width: 991px) {

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
    }

    .nav-container {
        min-height: 68px;
        padding: 0 20px;
    }

    .logo-container img {
        max-width: 175px;
    }

    /* show hamburger */
    .menu-toggle {
        display: flex;
    }

    .desktop-cta {
        display: none;
    }

    /* slide-down nav panel — dark on mobile too */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: block;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        background: #1a1a1aea;
        border-top: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 16px 36px rgba(0,0,0,.45);
        transition: max-height .35s cubic-bezier(.4,0,.2,1);
    }

    .main-nav.active {
        max-height: calc(100vh - 68px);
        overflow-y: auto;
    }

    .nav-menu {
        display: block;
        width: 100%;
        padding: 8px 20px 4px;
    }

    .nav-item {
        width: 100%;
    }

    /* text always white inside the dark mobile panel,
       even on light-hero (header-light) service pages */
    .nav-link,
    .site-header.header-light .nav-link {
        width: 100%;
        min-height: 52px;
        padding: 0 4px;
        color: rgba(255,255,255,.82);
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,.07);
        font-size: 15px;
    }

    .nav-link:hover,
    .has-mega-menu.active > .nav-link,
    .site-header.header-light .nav-link:hover,
    .site-header.header-light .has-mega-menu.active > .nav-link {
        color: #ffffff;
    }

    /* hide underline indicator on mobile */
    .nav-link::after {
        display: none;
    }

    /* =====================================
       MOBILE MEGA MENU  — white panel
    ===================================== */

    .mega-menu {
        position: static;
        display: block;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-top: 3px solid transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        background: #ffffff;
        transition: max-height .35s ease;
    }

    .has-mega-menu.active .mega-menu {
        max-height: 1400px;
        padding: 16px 12px 20px;
        border-top-color: #1268c4;
    }

    .mega-menu-header {
        flex-direction: column;
        align-items: flex-start;
        margin: 0 0 14px;
        padding-bottom: 14px;
        gap: 12px;
    }

    .mega-view-all {
        font-size: 12px;
        padding: 8px 14px;
    }

    .mega-eyebrow {
        font-size: 10px;
    }

    .mega-menu-header h2 {
        font-size: 20px;
    }

    .mega-menu-header p {
        font-size: 13px;
    }

    .mega-menu .services-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-menu-card {
        padding: 13px 15px;
        gap: 12px;
        border-radius: 8px;
        background: #f8fafc;
    }

    .service-menu-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 14px;
    }

    .service-menu-content h3 {
        font-size: 14px;
    }

    .service-menu-content p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .service-menu-link {
        font-size: 12px;
    }

    /* mobile CTA at bottom of slide panel */
    .mobile-nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 12px 20px 24px;
        padding: 14px 20px;
        color: #ffffff;
        background: #1268c4;
        border-radius: 7px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: background .2s ease;
    }

    .mobile-nav-cta:hover {
        background: #0d56a8;
    }

    /* while the mobile panel is open the header switches to the
       same dark state as index (dark bar + white logo + white burger) */
    .site-header.nav-open {
        background: rgba(10, 18, 30, 0.92) !important;
        border-bottom-color: rgba(255, 255, 255, 0.10) !important;
    }

    .site-header.nav-open .logo-dark {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .site-header.nav-open .logo-white {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .site-header.nav-open .menu-toggle {
        color: rgba(255, 255, 255, 0.9) !important;
        border-color: rgba(255, 255, 255, 0.18) !important;
    }

    .site-header.nav-open .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        border-color: rgba(255, 255, 255, 0.35) !important;
    }

}

/* =========================================
   INCLUDED SERVICES - MOBILE
========================================= */

@media (max-width: 767px) {

    /* GRID */
    .included-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;

        width: 100%;
        margin: 0;
        padding: 0;
    }


    /* CARD */
    .included-card {
        width: 100%;
        min-width: 0;

        padding: 24px 20px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        box-sizing: border-box;

        background: #ffffff;

        border: 1px solid #e5e7eb;
        border-radius: 10px;

        box-shadow: 0 4px 15px rgba(13, 13, 14, 0.06);

        overflow: hidden;
    }


    /* ICON */
    .included-icon {
        width: 48px;
        height: 48px;

        flex: 0 0 48px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin-bottom: 16px;

        color: #1268c4;

        background: #edf6ff;

        border-radius: 8px;

        font-size: 20px;
    }


    /* TITLE */
    .included-card h3 {
        width: 100%;

        margin: 0 0 10px;

        color: #1d1d1d;

        font-size: 19px;
        line-height: 1.3;

        font-weight: 700;
    }


    /* DESCRIPTION */
    .included-card p {
        width: 100%;

        margin: 0 0 17px;

        color: #667085;

        font-size: 14px;
        line-height: 1.65;

        text-align: left;
    }


    /* LEARN MORE */
    .included-card > a {
        display: inline-flex;
        align-items: center;
        gap: 8px;

        margin-top: auto;

        color: #1268c4;

        font-size: 14px;
        font-weight: 700;

        text-decoration: none;
    }


    .included-card > a i {
        font-size: 11px;

        transition: transform .2s ease;
    }


    .included-card > a:hover i {
        transform: translateX(4px);
    }


    /* TOUCH FEEDBACK */
    .included-card:active {
        transform: translateY(1px);
    }

}
/* =========================================
   XECURE HERO
========================================= */

.xn-hero {

    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 48%,
            #eef7ff 100%
        );

    isolation: isolate;
}


/* =========================================
   CONTAINER
========================================= */

.xn-hero-container {

    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 1280px;

    margin: 0 auto;

    padding: 90px 30px 100px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(480px, .9fr);

    align-items: center;

    gap: 70px;
}


/* =========================================
   BACKGROUND GRID
========================================= */

.hero-grid-pattern {

    position: absolute;

    inset: 0;

    z-index: -2;

    opacity: .45;

    background-image:
        linear-gradient(
            rgba(18,104,196,.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(18,104,196,.055) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 80%
        );
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    z-index: -1;

    pointer-events: none;
}


.hero-glow-one {

    width: 450px;
    height: 450px;

    top: -180px;
    right: 5%;

    background:
        rgba(43,145,235,.13);
}


.hero-glow-two {

    width: 300px;
    height: 300px;

    bottom: -100px;
    left: 25%;

    background:
        rgba(18,104,196,.08);
}


/* =========================================
   LEFT CONTENT
========================================= */

.xn-hero-content {

    max-width: 650px;
}


/* =========================================
   EYEBROW
========================================= */

.hero-eyebrow {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 23px;

    color: #526477;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .4px;

    text-transform: uppercase;
}


.hero-eyebrow-icon {

    width: 28px;
    height: 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #1268c4;

    background: #e8f4ff;

    border: 1px solid #d1e8fb;

    border-radius: 6px;

    font-size: 12px;
}


.hero-eyebrow-line {

    width: 25px;
    height: 1px;

    margin: 0 3px;

    background: #b9d7ef;
}


/* =========================================
   HERO TITLE
========================================= */

.xn-hero-title {

    margin: 0;

    color: #0d1b2a;

    font-size:
        clamp(45px, 5vw, 72px);

    line-height: .99;

    letter-spacing: -3.5px;

    font-weight: 800;
}


.xn-hero-title > span {

    display: block;
}


.hero-title-accent {

    color: #1268c4;

    position: relative;

    width: fit-content;
}


/* underline */

.hero-title-accent::after {

    content: "";

    position: absolute;

    left: 3px;
    right: 0;

    bottom: -7px;

    height: 5px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #1268c4,
            #43a9ff
        );

    opacity: .8;
}


/* =========================================
   DESCRIPTION
========================================= */

.xn-hero-description {

    max-width: 570px;

    margin: 28px 0 30px;

    color: #596b7d;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   ACTIONS
========================================= */

.xn-hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


.hero-btn {

    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


/* PRIMARY */

.hero-btn-primary {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1268c4,
            #0d5bad
        );

    border: 1px solid #1268c4;

    box-shadow:
        0 8px 22px
        rgba(18,104,196,.22);
}


.hero-btn-primary:hover {

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(18,104,196,.28);
}


.hero-btn-primary i {

    font-size: 12px;

    transition:
        transform .2s ease;
}


.hero-btn-primary:hover i {

    transform:
        translateX(4px);
}


/* SECONDARY */

.hero-btn-secondary {

    color: #173047;

    background: #ffffff;

    border: 1px solid #d8e1ea;

    box-shadow:
        0 3px 12px
        rgba(20,50,80,.05);
}


.hero-btn-secondary:hover {

    color: #1268c4;

    transform: translateY(-2px);

    border-color: #b8d7ef;

    box-shadow:
        0 8px 20px
        rgba(20,50,80,.09);
}


/* =========================================
   TRUST LINE
========================================= */

.hero-trust-line {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 27px;

    padding-top: 20px;

    border-top: 1px solid #e4ebf1;
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #617184;

    font-size: 12px;

    font-weight: 600;
}


.trust-item i {

    color: #21a366;

    font-size: 13px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {

    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================
   VISUAL GLOW
========================================= */

.hero-visual-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(51,157,235,.19) 0%,
            rgba(51,157,235,.08) 38%,
            transparent 70%
        );

    filter: blur(8px);
}


/* =========================================
   DASHBOARD
========================================= */

.hero-dashboard {

    position: relative;

    z-index: 3;

    width: 100%;

    max-width: 510px;

    padding: 25px;

    animation: fadeRight 1s ease;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8fbfe 100%
        );

    border:
        1px solid
        rgba(180,202,221,.75);

    border-radius: 16px;

    box-shadow:
        0 30px 70px
        rgba(25,70,105,.15),

        0 8px 25px
        rgba(25,70,105,.08);

    transform:
        perspective(1200px)
        rotateY(-3deg)
        rotateX(1deg);

    transition:
        transform .4s ease;
}


.hero-dashboard:hover {

    transform:
        perspective(1200px)
        rotateY(0deg)
        rotateX(0deg)
        translateY(-5px);
}


/* =========================================
   DASHBOARD HEADER
========================================= */

.hero-dashboard-header {

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 20px;

    border-bottom: 1px solid #e8eef3;
}


.dashboard-label {

    display: block;

    margin-bottom: 5px;

    color: #7890a5;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.hero-dashboard-header h2 {

    margin: 0;

    color: #14283b;

    font-size: 19px;

    font-weight: 800;
}


/* PROTECTED */

.dashboard-protected {

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    color: #168653;

    background: #edf9f2;

    border: 1px solid #d6f0df;

    border-radius: 20px;

    font-size: 10px;

    font-weight: 800;

    white-space: nowrap;
}


.dashboard-protected span {

    width: 6px;
    height: 6px;

    background: #20b66b;

    border-radius: 50%;

    box-shadow:
        0 0 0 3px
        rgba(32,182,107,.12);
}


/* =========================================
   OVERVIEW
========================================= */

.dashboard-overview {

    display: grid;

    grid-template-columns: 1.35fr .8fr;

    gap: 12px;

    margin-top: 15px;
}


/* =========================================
   HEALTH
========================================= */

.dashboard-health {

    padding: 16px;

    background: #f5f9fc;

    border: 1px solid #e5edf3;

    border-radius: 10px;
}


.dashboard-health-header {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.dashboard-health-header div {

    display: flex;

    align-items: baseline;

    gap: 10px;
}


.dashboard-health-header span {

    color: #63778a;

    font-size: 11px;

    font-weight: 600;
}


.dashboard-health-header strong {

    color: #1268c4;

    font-size: 24px;

    line-height: 1;
}


.dashboard-health-header > i {

    color: #1268c4;

    font-size: 15px;
}


.health-progress {

    width: 100%;
    height: 7px;

    margin: 13px 0 9px;

    overflow: hidden;

    background: #dfeaf2;

    border-radius: 10px;
}


.health-progress span {

    display: block;

    width: 98%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #1268c4,
            #43a9ff
        );

    animation:
        healthLoad 1.4s ease-out;
}


@keyframes healthLoad {

    from {
        width: 0;
    }

    to {
        width: 98%;
    }

}


.dashboard-health small {

    color: #8495a5;

    font-size: 9px;
}


/* =========================================
   DEVICE STAT
========================================= */

.dashboard-stat {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 14px;

    background: #ffffff;

    border:
        1px solid
        #e4ebf1;

    border-radius: 10px;
}


.stat-icon {

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 15px;
}


.stat-icon.blue {

    color: #1268c4;

    background: #eaf5ff;
}


.dashboard-stat span {

    display: block;

    color: #718397;

    font-size: 9px;

    margin-bottom: 3px;
}


.dashboard-stat strong {

    color: #162d42;

    font-size: 23px;

    line-height: 1;
}


/* =========================================
   DASHBOARD ITEMS
========================================= */

.dashboard-items {

    margin-top: 12px;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.dashboard-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 11px 12px;

    background: #ffffff;

    border:
        1px solid
        #e7edf2;

    border-radius: 9px;
}


.dashboard-item-left {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;
}


.dashboard-item-icon {

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    font-size: 13px;
}


.dashboard-item-icon.green {

    color: #15935a;

    background: #ebfaf2;
}


.dashboard-item-icon.purple {

    color: #7653c7;

    background: #f3efff;
}


.dashboard-item-icon.orange {

    color: #d47718;

    background: #fff4e8;
}


.dashboard-item-left strong {

    display: block;

    color: #24394c;

    font-size: 11px;

    line-height: 1.3;
}


.dashboard-item-left span {

    display: block;

    margin-top: 2px;

    color: #8a9aaa;

    font-size: 9px;

    line-height: 1.3;
}


.dashboard-item-status {

    display: flex;

    align-items: center;

    gap: 5px;

    color: #168653;

    font-size: 9px;

    font-weight: 800;

    white-space: nowrap;
}


.dashboard-item-status span {

    width: 6px;
    height: 6px;

    background: #20b66b;

    border-radius: 50%;
}


.dashboard-item-status strong {

    color: #1268c4;

    font-size: 11px;
}


/* =========================================
   DASHBOARD FOOTER
========================================= */

.hero-dashboard-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 17px;

    padding-top: 15px;

    border-top: 1px solid #e8eef3;

    color: #7a8b9b;

    font-size: 9px;
}


.hero-dashboard-footer > div {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #39825d;

    font-weight: 700;
}


.footer-live-dot {

    width: 6px;
    height: 6px;

    background: #22b76b;

    border-radius: 50%;

    animation:
        livePulse 2s infinite;
}


@keyframes livePulse {

    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34,183,107,.3);
    }

    50% {
        opacity: .7;
        box-shadow:
            0 0 0 5px rgba(34,183,107,0);
    }

}


/* =========================================
   FLOATING STATUS
========================================= */

.floating-status {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 14px;

    background: rgba(255,255,255,.95);

    border:
        1px solid
        #dce7ef;

    border-radius: 9px;

    box-shadow:
        0 12px 30px
        rgba(30,70,100,.13);

    backdrop-filter:
        blur(10px);
}


.floating-status-top {

    top: 54px;
    left: -30px;
}


.status-pulse {

    width: 9px;
    height: 9px;

    background: #20b66b;

    border-radius: 50%;

    box-shadow:
        0 0 0 5px
        rgba(32,182,107,.12);
}


.floating-status strong {

    display: block;

    color: #20374b;

    font-size: 10px;
}


.floating-status small {

    display: block;

    margin-top: 2px;

    color: #8798a8;

    font-size: 8px;
}


/* =========================================
   FLOATING BOTTOM CARD
========================================= */

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    background: #10283d;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 9px;

    box-shadow:
        0 18px 35px
        rgba(10,35,55,.22);
}


.floating-card-bottom {

    right: -25px;

    bottom: 48px;
}


.floating-card-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #66bbff;

    background:
        rgba(64,166,240,.12);

    border-radius: 7px;

    font-size: 13px;
}


.floating-card strong {

    display: block;

    color: #ffffff;

    font-size: 10px;
}


.floating-card span {

    display: block;

    margin-top: 2px;

    color: #8ea4b7;

    font-size: 8px;
}


/* =========================================
   SCROLL
========================================= */

.hero-scroll-indicator {

    position: absolute;

    z-index: 5;

    left: 50%;
    bottom: 20px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 9px;

    color: #8192a2;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .3px;

    text-transform: uppercase;
}


.hero-scroll-indicator i {

    color: #1268c4;

    animation:
        scrollArrow 1.8s infinite;
}


@keyframes scrollArrow {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }

}
/* =========================================
   XECURE NETWORK
   VIDEO HERO
========================================= */

.xn-video-hero {

    position: relative;

    width: 100%;

    min-height: 650px;

    overflow: hidden;

    display: flex;

    align-items: center;

    background: #07111f;

    color: #ffffff;

}


/* =========================================
   VIDEO BACKGROUND
========================================= */

.xn-video-background {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.xn-hero-video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}

/* Variantes responsive del hero video:
   desktop > 900px · tablet 768–900px · mobile ≤ 767px */

.xn-video-background .xn-hero-video-tablet,
.xn-video-background .xn-hero-video-mobile {

    display: none;

}

@media (min-width: 768px) and (max-width: 900px) {

    .xn-video-background .xn-hero-video-desktop {

        display: none;

    }

    .xn-video-background .xn-hero-video-tablet {

        display: block;

    }

}

@media (max-width: 767px) {

    .xn-video-background .xn-hero-video-desktop,
    .xn-video-background .xn-hero-video-tablet {

        display: none;

    }

    .xn-video-background .xn-hero-video-mobile {

        display: block;

    }

}


/* =========================================
   DARK OVERLAY
========================================= */

.xn-video-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(4, 14, 28, .92) 0%,
            rgba(4, 14, 28, .78) 35%,
            rgba(4, 14, 28, .38) 70%,
            rgba(4, 14, 28, .18) 100%
        );

}


/* =========================================
   BLUE ATMOSPHERIC GRADIENT
========================================= */

.xn-video-gradient {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:

        radial-gradient(
            circle at 15% 50%,
            rgba(18, 104, 196, .30),
            transparent 42%
        );

    pointer-events: none;

}


/* =========================================
   HERO CONTAINER
========================================= */

.xn-video-container {

    position: relative;

    z-index: 5;

    width: min(1280px, 92%);

    margin: 0 auto;

    padding: 120px 0 20px;

}


/* =========================================
   EYEBROW
========================================= */

.xn-hero-eyebrow {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 28px;

    color: rgba(255,255,255,.78);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.2px;

}


.xn-eyebrow-icon {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.25);

    border-radius: 8px;

    color: #65b7ff;

    background:
        rgba(255,255,255,.08);

}


.xn-eyebrow-divider {

    width: 34px;

    height: 1px;

    background:
        rgba(255,255,255,.35);

}


/* =========================================
   MAIN TITLE
========================================= */

.xn-hero-title {

    max-width: 760px;

    margin: 0;

    font-size: clamp(37px, 5.2vw, 64px);

    line-height: .92;

    letter-spacing: -1px;

    font-weight: 600;

    color: #ffffff;

}


/* =========================================
   DYNAMIC WORD
========================================= */

.xn-dynamic-word {

    display: block;

    color: #57adff;

    min-height: 1em;
    line-height: .92;
    margin: 0;
    padding: 0;

    transition:

        opacity .45s ease,

        transform .45s ease;

}


/* =========================================
   DYNAMIC SUBLINE
========================================= */

.xn-dynamic-subline {
    display: block;

    color: rgba(255,255,255,.92);

    font-size: .52em;
    line-height: .92;

    letter-spacing: -2px;

    margin-top: 3px;
    padding: 0;

    min-height: 1.1em;

    transition:
        opacity .45s ease,
        transform .45s ease;
}


.xn-dynamic-word.changing,
.xn-dynamic-subline.changing {

    opacity: 0;

    transform:
        translateY(14px);

}


/* =========================================
   DESCRIPTION
========================================= */

.xn-hero-description {

    max-width: 600px;

    margin: 30px 0 0;

    color:
        rgba(255,255,255,.78);

    font-size: 18px;

    line-height: 1.65;

}


/* =========================================
   BUTTONS
========================================= */

.xn-hero-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 36px;

}


.xn-btn {

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 24px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:

        transform .25s ease,

        background .25s ease,

        border-color .25s ease;

}


.xn-btn:hover {

    transform:
        translateY(-2px);

}


/* PRIMARY */

.xn-btn-primary {

    color: #ffffff;

    background: #1268c4;

    box-shadow:
        0 10px 35px
        rgba(18,104,196,.35);

}


.xn-btn-primary:hover {

    background: #0d78e8;

}


/* SECONDARY */

.xn-btn-secondary {

    color: #ffffff;

    border: 1px solid
        rgba(255,255,255,.30);

    background:
        rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

}


.xn-btn-secondary:hover {

    background:
        rgba(255,255,255,.14);

}


/* =========================================
   TRUST
========================================= */

.xn-hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 24px;

    margin-top: 28px;

}


.xn-hero-trust span {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255,255,255,.70);

    font-size: 12px;

    font-weight: 600;

}


.xn-hero-trust i {

    color: #36c983;

}


/* =========================================
   BOTTOM INFO
========================================= */

.xn-video-bottom {

    position: absolute;

    z-index: 6;

    bottom: 28px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 14px;

    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    white-space: nowrap;

}


.xn-bottom-line {

    width: 40px;

    height: 1px;

    background:
        rgba(255,255,255,.35);

}


/* =========================================
   VIDEO BUTTON
========================================= */

.xn-video-toggle {

    position: absolute;

    z-index: 10;

    right: 30px;

    bottom: 28px;

    width: 42px;

    height: 42px;

    border: 1px solid
        rgba(255,255,255,.25);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(0,0,0,.25);

    backdrop-filter: blur(10px);

    cursor: pointer;

    transition:
        background .25s ease;

}


.xn-video-toggle:hover {

    background:
        rgba(255,255,255,.15);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .xn-video-hero {

        min-height: 720px;

    }


    .xn-video-container {

        padding:
            100px 0;

    }


    .xn-hero-title {

        max-width: 650px;

        font-size:
            clamp(50px, 8vw, 72px);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .xn-video-hero {

        min-height: 760px;

        align-items: flex-start;

    }


    .xn-video-container {

        width: 88%;

        padding:
            100px 0 100px;

    }


    /*
       En mobile hacemos el video
       más oscuro para mejorar
       legibilidad.
    */

    .xn-video-overlay {

        background:

            linear-gradient(
                180deg,
                rgba(4,14,28,.88) 0%,
                rgba(4,14,28,.72) 50%,
                rgba(4,14,28,.90) 100%
            );

    }


    .xn-hero-eyebrow {

        max-width: 340px;

        font-size: 10px;

        line-height: 1.5;

    }


    .xn-eyebrow-divider {

        width: 22px;

    }


    .xn-hero-title {

        max-width: 100%;

        font-size:
            clamp(44px, 13vw, 62px);

        line-height: .96;

        letter-spacing: -2.5px;

    }


    .xn-dynamic-subline {

        font-size: .42em;

        letter-spacing: -1px;

        margin-top: 8px;

    }


    .xn-hero-description {

        max-width: 100%;

        margin-top: 26px;

        font-size: 16px;

        line-height: 1.55;

    }


    .xn-hero-actions {

        flex-direction: column;

        align-items: stretch;

        margin-top: 28px;

    }


    .xn-btn {

        width: 100%;

    }


    .xn-hero-trust {

        flex-direction: column;

        gap: 10px;

        margin-top: 24px;

    }


    .xn-video-bottom {

        bottom: 22px;

        font-size: 8px;

    }


    .xn-video-toggle {

        right: 18px;

        bottom: 18px;

    }

}
/* --- OVERLAY OSCURO DE FONDO --- */
.support-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.75); /* Fondo desenfocado premium */
    backdrop-filter: blur(8px);
    z-index: 2000; /* Asegura estar por encima de la cabecera */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Estado activo lanzado por JavaScript */
.support-modal-overlay.modal-active {
    opacity: 1;
    visibility: visible;
}

/* --- CAJA DEL MODAL --- */
.support-modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.support-modal-overlay.modal-active .support-modal-box {
    transform: translateY(0);
}

/* Botón cerrar (X) */
.support-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 28px; color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease;
}
.support-modal-close:hover { color: #0f172a; }

/* Encabezado interno */
.support-modal-header {
    text-align: center;
    margin-bottom: 24px;
}
.support-modal-header i {
    font-size: 32px; color: #2563eb;
    margin-bottom: 12px;
}
.support-modal-header h3 {
    font-size: 22px; color: #0f172a;
    font-weight: 800; margin-bottom: 6px;
}
.support-modal-header p {
    font-size: 13.5px; color: #64748b;
    line-height: 1.5; padding: 0 10px;
}

/* --- INTEGRACIÓN DEL PORTAL (IFRAME) --- */
.support-iframe-container {
    width: 100%;
    height: 180px; /* Altura perfecta para que solo se vea la caja del código de ScreenConnect */
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}
.support-iframe-container iframe {
    width: 100%;
    height: 100%;
}

/* Pie del modal */
.support-modal-footer {
    text-align: center;
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}
/* Contenedor del formulario dentro del modal */
.support-iframe-container {
    width: 100%;
    height: auto; /* Cambiado de un alto fijo a automático */
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 24px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.screenconnect-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Contenedor del input con icono */
.input-code-wrapper {
    position: relative;
    width: 100%;
}

.input-code-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.input-code-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 2px; /* Espaciado para que el código se vea claro */
    text-transform: uppercase;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Enfocar el input */
.input-code-wrapper input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Botón interno del modal */
.btn-submit-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #0f172a; /* Negro corporativo para contrastar */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-submit-code:hover {
    background: #1e293b;
}

.btn-submit-code:active {
    transform: scale(0.98);
}
/* =========================
   TRUST STRIP
========================= */

.trust-strip {
    width: 100%;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-strip-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;
}


/* INTRO */

.trust-intro {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    white-space: nowrap;
}

.trust-intro span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.trust-intro strong {
    font-size: 14px;
    color: #0f172a;
    font-weight: 700;
}


/* DIVIDER */

.trust-divider {
    width: 1px;
    height: 34px;
    background: #dbe1e8;
}


/* ITEMS */

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #475569;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}

.trust-item i {
    color: #1268c4;
    font-size: 15px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .trust-strip-inner {
        gap: 20px;
    }

    .trust-item {
        font-size: 12px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .trust-strip-inner {
        min-height: auto;

        padding: 22px 0;

        display: flex;
        flex-wrap: wrap;

        gap: 16px 22px;
    }

    .trust-intro {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        font-size: 12px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .trust-strip-inner {
        gap: 14px 18px;
    }

    .trust-item {
        font-size: 11px;
    }

    .trust-item i {
        font-size: 13px;
    }

}