*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0D1B3E;
    --navy-mid: #122352;
    --navy-light: #1A3166;
    --blue: #1E4DB7;
    --blue-light: #2563EB;
    --accent: #3B82F6;
    --accent-glow: #60A5FA;
    --teal: #0EA5E9;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-800: #1E293B;
    --green: #10B981;
    --gold: #F59E0B;
    --font-sans: 'DM Sans', sans-serif;
    --font-serif: 'DM Serif Display', serif;
}


/* ─── HERO ────────────────────────────────────── */

.hero {
    background: linear-gradient(135deg, #062d60 40%, var(--navy-mid) 50%, #346da7 100%);
    position: relative;
    overflow: hidden;
    padding: 3.5rem 1.5rem 0;
    text-align: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(30, 77, 183, .35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 40%, rgba(14, 165, 233, .2) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    padding: .3rem .8rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -.01em;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(90deg, var(--accent-glow), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    max-width: 600px;
    margin: 0 auto 1.5rem;

}

.hero-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;

}

.btn-primary {
    background: var(--blue-light);
    color: var(--white);
    padding: .65rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: background .2s, transform .15s;
    display: inline-block;
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, .4);
    color: var(--white);
    padding: .62rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: border-color .2s, background .2s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.trust-bar {
    position: relative;
    z-index: 2;
    background: var(--navy-light);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1rem 1.5rem;
    margin: 0 -1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .85);
    font-size: .85rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--green);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 1rem 0;
    }

    .trust-bar {
        margin: 0 -1rem;
        gap: 1rem 1.5rem;
    }
}

/* end hero section */


.why-bg {
    background: #f3f3f3 !important;

    padding: 3.5rem 1.5rem;

}

.container {
    max-width: 1150px;
    margin: 0 auto;
}


.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}


.why-text {
    text-align: left;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
    font-weight: 700;
    color: var(--blue, #1d4ed8);
    margin-bottom: .4rem;

}

.section-title {
    font-family: var(--font-serif, serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--navy, #0f172a);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.section-sub {
    color: var(--gray-600, #475569);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.section-desc {
    color: var(--gray-500, #64748b);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}


.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;

}

.why-list li {
    display: flex;
    align-items: flex-start;

    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--navy, #0f172a);
    line-height: 1.4;
}

.icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--green, #10b981);
    margin-top: 2px;

    flex-shrink: 0;
}

.icon-check svg {
    width: 100%;
    height: 100%;
}

.why-visual-inner {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 1.75rem;

}

.why-visual-inner h3 {
    font-size: 1.15rem;
    color: var(--navy, #0f172a);
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}


.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f1f5f9;
    color: #334155;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue, #1d4ed8);
    border-radius: 50%;
    display: inline-block;
}

.why-visual-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.why-visual-footer p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}


@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: 1fr;

        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .why-bg {
        padding: 2.5rem 1rem;

    }

    .why-visual-inner {
        padding: 1.25rem;
    }
}

/* ─── WHY SECURITY MATTERS ────────────────────── */


.why-bg {
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.why-text .section-sub {
    max-width: 480px;
}

.why-text p+p {
    margin-top: 1rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.5rem;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
    color: var(--gray-600);
}

.why-list li .icon-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-list li .icon-check svg {
    color: var(--green);
    width: 12px;
    height: 12px;
}

.why-visual {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(59, 130, 246, .25), transparent);
}

.why-visual-inner {
    position: relative;
    z-index: 1;
}

.why-visual h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.badge {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: .6rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}


.security-pillars-section {
    background-color: #f8f8f8;
    padding: 3.5rem 1.5rem;

}

.container {
    max-width: 1150px;
    margin: 0 auto;
}


.section-head.centered {
    text-align: center;
    margin-bottom: 2.5rem;

}

.section-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
    font-weight: 700;
    color: var(--blue, #1d4ed8);
    margin-bottom: .4rem;
}

.section-title {
    font-family: var(--font-serif, serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--navy, #0f172a);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-sub {
    color: var(--gray-600, #475569);
    font-size: 1rem;
    max-width: 620px;
    line-height: 1.5;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;

}

.pillar-card {
    background-color: #ffffff;

    border: 1.5px solid rgb(6, 46, 203);

    border-radius: 8px;
    padding: 1.75rem;
    text-align: left;

    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);

    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}


.pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);

}


.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #eff6ff;
    border-radius: 8px;
    color: var(--blue, #1d4ed8);
    margin-bottom: 1.2rem;
}

.pillar-icon svg {
    width: 22px;
    height: 22px;
}

.pillar-card h3 {
    font-size: 1.15rem;
    color: var(--navy, #0f172a);
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--gray-600, #475569);
    line-height: 1.5;
    margin: 0;
}


@media (max-width: 991px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .security-pillars-section {
        padding: 2.5rem 1rem;

    }

    .pillars-grid {
        grid-template-columns: 1fr;

    }

    .pillar-card {
        padding: 1.5rem;
    }
}

/* ─── SERVER ROOM ─────────────────────────────── */


.server-bg {
    background: var(--navy, #0f172a);
    color: var(--white, #ffffff);
    padding: 3.5rem 1.5rem;

}

.container {
    max-width: 1150px;
    margin: 0 auto;
}


.server-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;

}


.server-bg .section-label {
    color: var(--accent-glow, #3b82f6);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.server-bg .section-title {
    color: var(--white, #ffffff);
    font-family: var(--font-serif, serif);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.server-bg .section-sub {
    color: rgba(255, 255, 255, .75);
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}


.server-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;

}

.server-feat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 1.1rem;

    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .18);

    border-radius: 10px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.server-feat:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .35);

}

.server-feat-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: rgba(59, 130, 246, .25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.server-feat-icon svg {
    color: var(--accent-glow, #3b82f6);
    width: 18px;
    height: 18px;
}

.server-feat-content h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: .2rem;
}

.server-feat-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.4;
    margin: 0;
}

.video-placeholder {
    background: linear-gradient(145deg, #0a1628, #122352);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background .2s, transform .2s;
}

.video-placeholder:hover .play-btn {
    background: rgba(255, 255, 255, .25);
    transform: scale(1.06);
}

.play-btn svg {
    color: #ffffff;
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.video-notice {
    color: rgba(255, 255, 255, .45);
    font-size: .75rem;
    margin-top: .5rem;
    text-align: center;
}

.stats-counter-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.stat-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif, serif);
    font-size: 1.6rem;
    color: var(--accent-glow, #3b82f6);
    font-weight: 600;
}

.stat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    margin-top: .15rem;
}

@media (max-width: 991px) {
    .server-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .server-bg {
        padding: 2.5rem 1rem;
    }

    .server-feat {
        padding: 0.8rem;
    }

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

/* ─── NO WFH ──────────────────────────────────── */

.nowfh-section {
    background-color: #f7fbff;
    padding: 3.5rem 1.5rem;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
}

.nowfh-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
}

.nowfh-visual {
    background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 14px;
    padding: 2.2rem;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nowfh-icon-big {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.nowfh-icon-big svg {
    width: 32px;
    height: 32px;
    color: #f59e0b;
}

.nowfh-visual h3 {
    font-family: var(--font-serif, serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: .6rem;
}

.nowfh-visual p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
    margin-bottom: 0;
}

.nowfh-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.nowfh-stat {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 0.85rem 0.5rem;
}

.nowfh-stat strong {
    display: block;
    font-size: 1.35rem;
    font-family: var(--font-serif, serif);
    color: #ffffff;
    line-height: 1.2;
}

.nowfh-stat span {
    display: block;
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 0.2rem;
    line-height: 1.2;
}

.nowfh-content .section-label {
    color: var(--blue, #1d4ed8);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.nowfh-content .section-title {
    color: var(--navy, #0f172a);
    font-family: var(--font-serif, serif);
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.nowfh-content .section-sub {
    color: var(--gray-600, #475569);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.8rem;
}

.nowfh-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nowfh-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.nowfh-point .num {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background-color: var(--blue, #1d4ed8);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    margin-top: 2px;
}

.point-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy, #0f172a);
    margin-bottom: .15rem;
}

.point-text p {
    font-size: .86rem;
    color: var(--gray-600, #475569);
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 991px) {
    .nowfh-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nowfh-visual {
        padding: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nowfh-section {
        padding: 2.5rem 1rem;
    }

    .nowfh-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .nowfh-point {
        gap: 0.75rem;
    }
}


/* ─── COMPLIANCE STRIP ────────────────────────── */

.compliance-strip {
    background: #040858;
    color: var(--white);
    padding: 3.5rem 2rem;
    text-align: center;
}

.compliance-strip h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: .75rem;
}

.compliance-strip p {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 2rem;
}

.compliance-logos {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.comp-badge {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    padding: .7rem 1.4rem;
    font-size: .85rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

/* ─── PROCESS ─────────────────────────────────── */

.process-section {
    padding: 4rem 1.5rem;
    background-color: var(--white, #ffffff);
}

.container {
    max-width: 1150px;
    margin: 0 auto;
}

.section-head.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-label {
    color: var(--blue, #1d4ed8);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.section-title {
    color: var(--navy, #0f172a);
    font-family: var(--font-serif, serif);
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.section-sub {
    color: var(--gray-600, #475569);
    font-size: 0.95rem;
    line-height: 1.5;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue, #1d4ed8), var(--teal, #14b8a6));
    z-index: 0;
}

/* Step Card Structure */
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.2rem;
    background: var(--white, #ffffff);
    padding: 0 10px;
}

.step-circle {
    width: 52px;
    height: 52px;
    background: #008ba3;

    color: var(--white, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif, serif);
    font-size: 1.2rem;
    font-weight: 600;
    border: 3px solid var(--white, #ffffff);
    box-shadow: 0 0 0 2px var(--blue, #1d4ed8);
}

.process-step h4 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--navy, #0f172a);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--gray-600, #475569);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 560px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .process-step {
        text-align: left;
        display: flex;
        gap: 1.2rem;
        align-items: flex-start;
    }

    .step-circle-wrapper {
        margin-bottom: 0;
        padding: 0;
        flex-shrink: 0;

    }


    .process-step .step-content,
    .process-step text-container {
        flex: 1;
    }

    .step-circle {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }
}

@media (max-width: 560px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-step {
        text-align: center;
        display: block;

    }

    .step-circle-wrapper {
        margin-bottom: 1rem;
        padding: 0 10px;
        display: inline-block;
    }

    .step-circle {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin: 0 auto;

    }
}

/* ─── CTA STRIP ───────────────────────────────── */

.cta-strip {
    background: #f8f8f8;
    padding: 4rem 1.5rem;
    text-align: center;
    color: black;
}

.cta-strip h2 {
    font-family: var(--font-serif, serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.cta-strip p {
    color: black;
    font-size: 0.98rem;
    line-height: 1.5;
    max-width: 560px;
    margin: 0 auto 1.8rem;
}


.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #062d60;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-white:hover {
    background: #0b75b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: #0b75b2;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: blue;
    border-color: var(--white, #ffffff);
    transform: translateY(-2px);
}

.btn-white:active,
.btn-outline:active {
    transform: translateY(0);
}


/* ─── GLOBAL RESPONSIVE MEDIA QUERIES ────────── */
@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid,
    .server-grid,
    .nowfh-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .cta-strip {
        padding: 3.5rem 1.2rem;
    }

    .cta-actions {
        flex-direction: column;
        /* मोबाइल पर बटन्स एक के नीचे एक फुल विड्थ में आएंगे */
        width: 100%;
        gap: 0.75rem;
    }

    .btn-white,
    .btn-outline {
        width: 100%;
        /* छोटे मोबाइल स्क्रीन पर बेहतर क्लिक-एरिया */
        max-width: 320px;
    }

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

    .nav-links {
        display: none;
    }

    .trust-bar {
        gap: 1.2rem;
    }
}


/* ─── FADE-IN SCROLL ANIMATION ───────────────── */

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}