
:root {
    --bg: #ffffff;
    --bg2: #f5f7fa;
    --surface: #ffffff;
    --border: #e2e6ed;
    --border-light: #d3d9e3;
    --accent: #0a5cb8;
    --accent-dark: #073e7d;
    --accent2: #c2202f;
    --accent3: #1a8a4a;
    --text: #1b2433;
    --muted: #5a6578;
    --mono: 'Segoe UI', Arial, Helvetica, sans-serif;
    --sans: 'Segoe UI', Arial, Helvetica, sans-serif;
}


html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

nav.scrolled {
    background: var(--bg);
    padding: 1rem 3rem;
    box-shadow: 0 2px 12px rgba(20, 30, 50, 0.06);
}

.logo {
    font-family: var(--sans);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.02em;
    text-decoration: none;
    z-index: 1001;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--accent); }

.mobile-menu-btn {
    display: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
    width: 50px;
    height: 50px;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn:active {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    display: block;
}



.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow-x: hidden;
    background: var(--bg2);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-tag::before {
    width: 32px;
    height: 2px;
    background: var(--accent);
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero h1 .accent-red {
    color: var(--accent2);
}

.hero-desc {
    font-family: var(--sans);
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-deco {
    display: none;
}

.hero-deco-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.deco-circle,
.deco-dot,
.deco-dot2,
.terminal-box {
    display: none;
}


.btn-primary {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff;
    background: var(--accent);
    border: none;
    padding: 0.9rem 1.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-ghost {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 0.9rem 1.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn-ghost:hover {
    color: var(--accent);
    border-color: var(--accent);
}


.stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 3rem;
    display: flex;
    gap: 4rem;
    overflow-x: auto;
    position: relative;
    z-index: 2;
    background: var(--bg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    white-space: nowrap;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.stat-label {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}


@media (max-width: 768px) {
    .stats-bar {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        overflow-x: visible;
    }
    
    .stat-item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        white-space: normal;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-num {
        font-size: 1.5rem;
        min-width: 70px;
    }
    
    .stat-label {
        font-size: 0.8rem;
        text-align: right;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.6rem 0.8rem;
    }
    
    .stat-num {
        font-size: 1.3rem;
        min-width: 60px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

section {
    padding: 6rem 3rem;
    position: relative;
    z-index: 3;
    overflow-x: hidden;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.section-tag {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}

.section-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-num {
    font-family: var(--sans);
    font-size: 0.75rem;
    color: var(--border-light);
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p strong { color: var(--text); }

.about-features {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}

.about-features li:hover {
    border-color: var(--accent);
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    padding-top: 0.1rem;
    color: var(--accent);
}

.feature-content h3, .feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.feature-content p {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 !important;
}

.about-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrap img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.about-image-wrap::before {
    display: none;
}


.security-section {
    background: var(--bg2);
}

.security-hero {
    text-align: center;
    margin-bottom: 3.5rem;
}

.security-badge {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 0.4rem 1.1rem;
    display: inline-block;
    margin-bottom: 1.25rem;
    background: #eaf2fb;
}

.security-hero h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: var(--text);
}

.security-lead {
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.security-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(20, 30, 50, 0.04);
}

.security-card:hover {
    border-color: var(--border-light);
    box-shadow: 0 4px 16px rgba(20, 30, 50, 0.08);
}

.security-icon {
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: block;
}

.security-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.security-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.security-features li {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--muted);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    line-height: 1.6;
}

.security-features li::before {
    content: '✓';
    color: var(--accent);
    flex-shrink: 0;
    font-weight: 700;
}

.security-status {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent3);
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: auto;
}

/* INCIDENT RESPONSE */
.security-ir {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    padding: 3rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 1px 3px rgba(20, 30, 50, 0.04);
}

.security-ir-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 2.25rem;
    font-family: var(--sans);
    color: var(--text);
}

.security-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.security-step {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.security-step:last-child { border-bottom: none; }

.security-step-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    flex-shrink: 0;
    width: 60px;
}

.security-step-no {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

.security-step-time {
    font-family: var(--sans);
    font-size: 0.7rem;
    color: var(--muted);
    text-align: center;
}

.security-step-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.security-step-body p {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}


.security-cta {
    text-align: center;
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.security-cta h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.security-cta p {
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.security-cta-note {
    font-family: var(--sans);
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1rem !important;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(20, 30, 50, 0.04);
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(20, 30, 50, 0.08);
}

.service-card.red {
    border-top: 3px solid var(--accent2);
}

.service-card.green {
    border-top: 3px solid var(--accent3);
}

.service-card:not(.red):not(.green) {
    border-top: 3px solid var(--accent);
}

.service-icon-tag {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    display: block;
}

.service-card.red .service-icon-tag { color: var(--accent2); }
.service-card.green .service-icon-tag { color: var(--accent3); }

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card > p {
    font-family: var(--sans);
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--muted);
    display: flex;
    gap: 0.6rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    flex-shrink: 0;
    font-weight: 700;
}

.service-card.red .service-features li::before { color: var(--accent2); }
.service-card.green .service-features li::before { color: var(--accent3); }

.service-cta-link {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(20, 30, 50, 0.04);
}

.portfolio-item:hover {
    box-shadow: 0 4px 16px rgba(20, 30, 50, 0.08);
}

.portfolio-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.portfolio-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content { padding: 2rem; }

.portfolio-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.portfolio-content p {
    font-family: var(--sans);
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.portfolio-tag {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 0.2rem 0.6rem;
}

.portfolio-btn {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-cta {
    text-align: center;
    padding: 2rem 0 0;
}

/* PROOF / MEDIA */
.proof-item-media {
    border: 1px solid var(--border);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(20, 30, 50, 0.04);
    overflow: hidden;
}

.proof-item-media:hover {
    box-shadow: 0 4px 16px rgba(20, 30, 50, 0.08);
}

.proof-img-wrap {
    overflow: hidden;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}

.proof-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-item-media .proof-content { padding: 2rem 2.5rem; }

.proof-item-media .proof-arrow {
    padding: 2rem 1.5rem;
    align-self: center;
    font-size: 1.1rem;
    color: var(--muted);
}

.proof-item-media:hover .proof-arrow {
    color: var(--accent);
}

.proof-source {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.proof-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    color: var(--text);
}

.proof-desc {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}


.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.report-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(20, 30, 50, 0.04);
    border-top: 3px solid var(--accent2);
}

.report-card:hover {
    box-shadow: 0 4px 16px rgba(20, 30, 50, 0.08);
}

.report-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-family: var(--sans);
    font-size: 0.75rem;
    color: var(--muted);
}

.report-tag {
    border: 1px solid var(--accent2);
    color: var(--accent2);
    border-radius: 4px;
    padding: 0.15rem 0.55rem;
    font-size: 0.7rem;
    font-weight: 700;
}

.report-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

.report-desc {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}

.report-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: auto;
}

.report-cve {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent2);
}

.report-arrow {
    font-size: 1rem;
    color: var(--muted);
}

.report-card:hover .report-arrow {
    color: var(--accent2);
}


.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-left h2 em {
    font-style: normal;
    color: var(--accent);
}

.contact-left > p {
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2.25rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
}

.contact-info-item:hover { color: var(--accent); }

.contact-info-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--accent);
}

.contact-info-item:hover .contact-info-icon {
    border-color: var(--accent);
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-info-label {
    font-family: var(--sans);
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-info-value {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 600;
}

.contact-right {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.92rem;
    padding: 0.8rem 1rem;
    outline: none;
    resize: vertical;
}

.form-control:focus { border-color: var(--accent); }

textarea.form-control { min-height: 120px; }

.hidden-field { display: none !important; }

.status-box {
    font-family: var(--sans);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    min-height: 1.5rem;
}


footer {
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
    background: var(--bg2);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 3rem;
}

.footer-col h3 {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.footer-col p {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list li {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-links-list a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links-list a:hover { color: var(--accent); }

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    background: #ffffff;
}

.social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
}

.footer-bottom-links a:hover { color: var(--accent); }


.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 50, 0.5);
    z-index: 500;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(20, 30, 50, 0.15);
}

.modal-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.modal-box p {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.3rem;
    cursor: pointer;
}

.close-modal:hover { color: var(--text); }


.reveal {
    opacity: 1;
}


.error {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--accent2);
    padding: 1rem;
    border: 1px solid var(--accent2);
    border-radius: 6px;
    background: #fdecee;
}



@media(max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }
    
    nav.scrolled {
        padding: 0.75rem 1.5rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.open a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .stats-bar {
        padding: 1rem 1.5rem;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrap {
        display: none;
    }
    
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .footer-bottom-links {
        display: none;
    }
    
    .security-step {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .security-step-left {
        width: auto;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
    }
    
    .proof-item-media {
        grid-template-columns: 100px 1fr auto;
    }
    
    .proof-item-media .proof-content {
        padding: 1.25rem;
    }
}


@media(max-width: 480px) {
    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    
    .stat-num {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stats-bar {
        gap: 1rem;
        justify-content: space-between;
    }
    
    .section-tag {
        font-size: 0.78rem;
        letter-spacing: 0.1em;
    }
    
    .services-grid,
    .security-grid,
    .portfolio-grid,
    .pricing-grid,
    .reports-grid {
        display: flex;
        flex-direction: column;
    }
    
    .service-card,
    .security-card,
    .portfolio-item,
    .pricing-card,
    .report-card {
        min-width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .proof-item-media {
        grid-template-columns: 1fr;
    }
    
    .proof-img-wrap {
        height: 160px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .proof-item-media .proof-content {
        padding: 1.25rem;
    }
    
    .proof-item-media .proof-arrow {
        padding: 1rem;
    }
    
    .security-ir {
        padding: 1.5rem;
    }
    
    .security-cta {
        padding: 1.5rem;
    }
    
    .contact-right {
        padding: 1.5rem;
    }
}


@media(max-width: 768px) {
    .services-grid,
    .security-grid,
    .portfolio-grid,
    .pricing-grid,
    .reports-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .service-card,
    .security-card,
    .portfolio-item,
    .pricing-card,
    .report-card {
        min-width: 100%;
    }
    
  
    section, 
    .hero, 
    .stats-bar, 
    .security-section, 
    footer, 
    nav, 
    .contact-inner,
    .about-grid,
    .security-grid,
    .services-grid,
    .portfolio-grid {
        overflow-x: hidden !important;
    }
}