*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy-deep: oklch(14% 0.04 255);
    --navy-mid: oklch(19% 0.05 255);
    --navy-light: oklch(26% 0.06 255);
    --navy-border: oklch(32% 0.07 255);
    --fire: oklch(68% 0.19 42);
    --fire-bright: oklch(76% 0.20 48);
    --fire-dim: oklch(54% 0.16 38);
    --text-primary: oklch(94% 0.01 255);
    --text-secondary: oklch(72% 0.03 255);
    --text-muted: oklch(52% 0.04 255);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy-deep);
    color: var(--text-primary);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(oklch(100% 0 0 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0 0 / 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 5vw, 80px);
    height: 64px;
    border-bottom: 1px solid var(--navy-border);
    background: oklch(14% 0.04 255 / 0.92);
    backdrop-filter: blur(12px);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    /*filter: invert(55%) saturate(100%) invert(35%) sepia(80%) saturate(600%) hue-rotate(340deg) brightness(90%);*/
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    list-style: none;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--fire-bright);
}

.nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-deep);
    background: var(--fire);
    border: none;
    padding: 8px 22px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--fire-bright);
    transform: translateY(-1px);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px clamp(24px, 5vw, 80px) 80px;
    gap: 60px;
    overflow: hidden;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
}

.hero-dragon-bg {
    position: absolute;
    right: clamp(20px, 5vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(300px, 38vw, 560px);
    height: clamp(300px, 38vw, 560px);
    pointer-events: none;
    opacity: 0.07;
    filter: invert(55%) saturate(100%) invert(55%) sepia(60%) saturate(500%) hue-rotate(340deg) brightness(110%);
    object-fit: contain;
}

.hero-bg-orb {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, oklch(68% 0.19 42 / 0.10) 0%, oklch(68% 0.19 42 / 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--fire);
}

.hero-eyebrow span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fire);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 7vw, 110px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.hero h1 em {
    font-style: normal;
    color: var(--fire);
}

.hero-desc {
    font-size: clamp(16px, 1.4vw, 18px);
    color: var(--text-secondary);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-deep);
    background: var(--fire);
    border: none;
    padding: 14px 36px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--fire-bright);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--navy-border);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
    color: var(--fire);
    border-color: var(--fire-dim);
}

.hero-stats-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cybercrime-stat {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    border-left: 3px solid var(--fire-dim);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-left-color 0.2s, background 0.2s;
    animation: slideIn 0.6s ease-out both;
}

.cybercrime-stat:nth-child(1) {
    animation-delay: 0.05s;
}

.cybercrime-stat:nth-child(2) {
    animation-delay: 0.15s;
}

.cybercrime-stat:nth-child(3) {
    animation-delay: 0.25s;
}

.cybercrime-stat:nth-child(4) {
    animation-delay: 0.35s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cybercrime-stat:hover {
    background: var(--navy-light);
    border-left-color: var(--fire);
}

.cstat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 3.5vw, 52px);
    color: var(--fire);
    line-height: 1;
    flex-shrink: 0;
    min-width: 90px;
}

.cstat-body strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.cstat-body span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* --- MARQUEE --- */
.marquee-band {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
    background: var(--navy-mid);
    overflow: hidden;
    padding: 14px 0;
}

.marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-right: 32px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 32px;
}

.marquee-item::after {
    content: '—';
    color: var(--fire-dim);
    font-size: 8px;
}

/* --- SERVICES --- */
.services {
    position: relative;
    z-index: 1;
    padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
}

.services-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--fire);
    flex-shrink: 0;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 64px;
    width: 100%;
    max-width: 900px;
}

.services-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5vw, 80px);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.services-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 420px;
    line-height: 1.75;
    align-self: end;
}

.service-row {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid var(--navy-border);
    display: flex;
    grid-template-columns: 68px 60px 1fr;
    align-items: start;
    gap: 32px;
    padding: 44px 0;
    position: relative;
    cursor: default;
}

.service-row::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 1px;
    background: var(--fire);
    transition: width 0.4s ease-out;
}

.service-row:hover::after {
    width: 100%;
}

.service-row:last-child {
    border-bottom: 1px solid var(--navy-border);
}

.service-index {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--navy-border);
    line-height: 1;
    transition: color 0.25s;
    padding-top: 4px;
}

.service-row:hover .service-index {
    color: var(--fire-dim);
}

.service-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    padding-top: 4px;
    opacity: 0.65;
    transition: opacity 0.25s;
}

.service-row:hover .service-icon {
    opacity: 1;
}

.service-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.service-row:hover .service-body h3 {
    color: var(--fire-bright);
}

.service-simple {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 580px;
}

.service-detail-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fire-dim);
    border: none;
    background: none;
    padding: 0;
    transition: color 0.2s;
    user-select: none;
}

.service-detail-toggle:hover {
    color: var(--fire);
}

.service-detail-toggle .toggle-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.service-detail-toggle.open .toggle-arrow {
    transform: rotate(90deg);
}

.service-detail-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.service-detail-body.open {
    grid-template-rows: 1fr;
}

.service-detail-inner {
    overflow: hidden;
}

.service-detail-body.open .service-detail-inner {
    padding-top: 18px;
}

.service-detail-inner p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--navy-border);
    padding: 4px 12px;
    transition: color 0.2s, border-color 0.2s;
}

/* --- PROCESS --- */
.process {
    position: relative;
    z-index: 1;
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
    padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 80px);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.process-step {
    background: var(--navy-deep);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

.process-step:hover {
    background: var(--navy-light);
}

.process-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--navy-border);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.process-step:hover .process-step-num {
    color: var(--fire-dim);
}

.process-step h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--text-primary);
    line-height: 1.3;
}

.process-step ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.process-step ul li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.process-step ul li::before {
    content: '\276F';
    position: absolute;
    left: 0;
    color: var(--fire-dim);
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s;
}

.process-step:hover ul li::before {
    color: var(--fire);
}

.process-step::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fire);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease-out;
}

.process-step:hover::before {
    transform: scaleX(1);
}

/* --- INFOGRAPHICS --- */
.infographics {
    position: relative;
    z-index: 1;
    padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 80px);
    overflow: hidden;
}

.infographics-dragon-watermark {
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 420px;
    height: 420px;
    pointer-events: none;
    opacity: 0.04;
    filter: invert(1);
    object-fit: contain;
}

.infographics-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 64px;
}

.infographics-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 4.5vw, 72px);
    line-height: 0.95;
}

.infographics-header h2 span {
    color: var(--fire);
}

.infographics-header p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
    max-width: 420px;
    align-self: end;
}

.infographics-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
}

.infographic-block {
    background: var(--navy-mid);
    border: 1px solid var(--navy-border);
    padding: clamp(28px, 3vw, 44px);
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

.infographic-block:hover {
    background: var(--navy-light);
}

.infographic-block.featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
}

.infographic-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fire);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.infographic-block:hover::before {
    transform: scaleX(1);
}

.infographic-bg-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 110px;
    height: 110px;
    pointer-events: none;
    user-select: none;
    opacity: 0.12;
}

.infographic-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fire-dim);
    margin-bottom: 16px;
}

.infographic-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 96px);
    color: var(--fire);
    line-height: 0.9;
    margin-bottom: 16px;
}

.infographic-value.large {
    font-size: clamp(64px, 7.5vw, 120px);
}

.infographic-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.infographic-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 380px;
}

/* Economy bars */
.economy-bars {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.economy-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.economy-row-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.economy-row-label .ename {
    color: var(--text-secondary);
}

.economy-row-label .eval {
    color: var(--text-primary);
    font-weight: 600;
}

.bar-track {
    height: 5px;
    background: var(--navy-border);
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    animation: barGrow 1.4s ease-out both;
}

.bar-fill.usa {
    background: oklch(55% 0.12 255);
}

.bar-fill.china {
    background: oklch(58% 0.15 200);
}

.bar-fill.cybercrime {
    background: var(--fire);
}

@keyframes barGrow {
    from {
        width: 0;
    }
}

/* --- PARTNERS --- */
.clients {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--navy-border);
    padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px);
    text-align: center;
}

.clients-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 72px);
    flex-wrap: wrap;
}

.clients {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: 0.1em;
    color: var(--navy-border);
    transition: color 0.2s;
}

.client-logo:hover {
    color: var(--text-muted);
}

/* --- CTA --- */
.cta-section {
    position: relative;
    z-index: 1;
    background: var(--navy-mid);
    border-top: 1px solid var(--navy-border);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
    overflow: hidden;
}

.cta-dragon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    pointer-events: none;
    opacity: 0.04;
    filter: invert(55%) saturate(100%) invert(55%) sepia(60%) saturate(500%) hue-rotate(340deg) brightness(110%);
    object-fit: contain;
}

.cta-bg {
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, oklch(68% 0.19 42 / 0.09) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    max-width: 66.666%;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5.5vw, 88px);
    line-height: 0.92;
    max-width: 700px;
}

.cta-inner h2 span {
    color: var(--fire);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    flex-shrink: 0;
}

.cta-fine {
    font-size: 13px;
    color: var(--text-muted);
    text-align: right;
    max-width: 220px;
    line-height: 1.5;
}

/* --- FOOTER --- */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--navy-border);
    padding: 40px clamp(24px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo,
.footer-copy {
    flex: 1;
}
.footer-copy {
    text-align: right;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.4;
    /*filter: invert(55%) saturate(100%) invert(55%) sepia(60%) saturate(400%) hue-rotate(340deg);*/
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--fire);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.animate-ready {
    opacity: 0;
    transform: translateY(24px);
}

.reveal.animate-ready.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .infographics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .infographic-block.featured {
        grid-row: span 1;
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-stats-col {
        display: none;
    }

    .services-inner {
        max-width: 100%;
    }

    .services-header {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 48px 44px 1fr;
        gap: 18px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .infographics-header {
        grid-template-columns: 1fr;
    }

    .infographics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .cta-actions {
        align-items: flex-start;
    }

    .cta-fine {
        text-align: left;
        max-width: none;
    }
}

@media (max-width: 560px) {
    .nav-links {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .infographics-grid {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 40px 36px 1fr;
        gap: 12px;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
