/* =========================================================
   SILENT KILLER — QUALITY PAGE
   PREMIUM WHITE / GREEN / GRAY / BLACK
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container,
.nav-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    height: 76px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #e5e9e6;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.logo span {
    font-weight: 400;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav a {
    position: relative;
    color: #666;
    font-size: 13px;
    transition: .3s ease;
}

.nav a:hover,
.nav a.active {
    color: #15964f;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: #20a85c;
}

.nav-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    background: #111;
    color: #fff !important;
    border: 1px solid #111;
    font-size: 10px !important;
    font-weight: 800;
    letter-spacing: 1px;
    transition: .35s ease;
}

.nav-button:hover {
    background: #20a85c;
    border-color: #20a85c;
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.quality-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(32,168,92,.08),
            transparent 30%
        ),
        #f7f8f7;
    border-bottom: 1px solid #e4e8e5;
}

.quality-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(17,17,17,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17,17,17,.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 85%
    );

    pointer-events: none;
}

.quality-hero-inner {
    width: min(1180px,92%);
    margin: auto;

    display: grid;
    grid-template-columns: .95fr 1.05fr;

    align-items: center;

    gap: 60px;

    position: relative;
    z-index: 2;
}

.quality-hero-content {
    padding: 70px 0;
}

.eyebrow,
.section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #15964f;
}

.quality-hero h1 {
    margin-top: 18px;

    font-size: clamp(50px, 6vw, 82px);

    line-height: .9;

    letter-spacing: -4px;

    color: #111;
}

.quality-hero h1 span {
    display: block;
    color: #20a85c;
}

.hero-description {
    max-width: 520px;

    margin-top: 26px;

    color: #707772;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PREMIUM BUTTONS
========================================================= */

.quality-buttons {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;

    flex-wrap: wrap;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 13px 17px;

    border: 1px solid #20a85c;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.premium-btn span {
    font-size: 14px;
    color: #20a85c;

    transition: .35s ease;
}

.premium-btn.primary {
    background: #20a85c;
    color: #fff;
}

.premium-btn.primary span {
    color: #fff;
}

.premium-btn.primary:hover {
    background: #087d3c;
    border-color: #087d3c;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(32,168,92,.18);
}

.premium-btn.secondary {
    background: #fff;
    color: #111;
}

.premium-btn.secondary:hover {
    background: #111;
    border-color: #111;
    color: #fff;

    transform: translateY(-3px);
}

.premium-btn:hover span {
    transform: translate(3px,-3px);
}


/* =========================================================
   HERO QUALITY VISUAL
========================================================= */

.quality-hero-visual {
    height: 470px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.quality-orbit {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.orbit-one {
    width: 360px;
    height: 220px;

    border: 1px solid rgba(32,168,92,.45);

    transform: rotate(-18deg);

    animation: orbitOne 12s linear infinite;
}

.orbit-two {
    width: 500px;
    height: 310px;

    border: 1px solid rgba(17,17,17,.09);

    transform: rotate(22deg);

    animation: orbitTwo 18s linear infinite;
}

@keyframes orbitOne {
    from {
        transform: rotate(-18deg);
    }

    to {
        transform: rotate(342deg);
    }
}

@keyframes orbitTwo {
    from {
        transform: rotate(22deg);
    }

    to {
        transform: rotate(-338deg);
    }
}

.quality-core {
    width: 220px;
    height: 220px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            #fff 0%,
            #f1f4f1 55%,
            #e6ebe7 100%
        );

    border: 1px solid #dce2de;

    box-shadow:
        0 25px 70px rgba(0,0,0,.12),
        inset 0 0 40px rgba(32,168,92,.05);

    position: relative;
    z-index: 3;

    animation: qualityFloat 5s ease-in-out infinite;
}

@keyframes qualityFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.quality-core::before {
    content: "";

    position: absolute;

    width: 155px;
    height: 155px;

    border-radius: 50%;

    border: 1px solid rgba(32,168,92,.45);
}

.quality-core-inner {
    width: 105px;
    height: 105px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;

    color: #fff;

    border: 5px solid #20a85c;

    box-shadow:
        0 0 35px rgba(32,168,92,.2);
}

.quality-core-inner span {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 2px;
}

.quality-point {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #20a85c;

    box-shadow:
        0 0 18px rgba(32,168,92,.65);

    z-index: 5;
}

.point-one {
    top: 95px;
    right: 105px;
}

.point-two {
    bottom: 105px;
    left: 100px;

    background: #111;

    box-shadow: 0 0 12px rgba(0,0,0,.2);
}

.point-three {
    top: 50%;
    right: 25px;
}


/* =========================================================
   INTRO
========================================================= */

.quality-intro {
    padding: 105px 0;

    background: #fff;
}

.quality-intro-grid {
    display: grid;

    grid-template-columns: 1fr .8fr;

    gap: 90px;

    align-items: start;
}

.quality-intro h2 {
    margin-top: 16px;

    font-size: clamp(38px,5vw,58px);

    line-height: .95;

    letter-spacing: -2.5px;
}

.quality-intro h2 span {
    color: #20a85c;
}

.section-description {
    color: #707772;

    font-size: 13px;

    line-height: 1.85;

    margin-bottom: 18px;
}


/* =========================================================
   QUALITY PROCESS
========================================================= */

.quality-process {
    padding: 105px 0 115px;

    background: #f6f7f6;

    border-top: 1px solid #e4e8e5;

    border-bottom: 1px solid #e4e8e5;
}

.section-heading {
    display: grid;

    grid-template-columns: 1fr .75fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 55px;
}

.section-heading h2 {
    margin-top: 15px;

    font-size: clamp(38px,5vw,58px);

    line-height: .95;

    letter-spacing: -2.5px;
}

.section-heading h2 span {
    color: #20a85c;
}


/* =========================================================
   QUALITY CARDS
========================================================= */

.quality-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 15px;
}

.quality-card {
    position: relative;

    min-height: 365px;

    padding: 22px;

    background: #fff;

    border: 1px solid #e0e5e1;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.quality-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #20a85c;

    transition: .5s ease;
}

.quality-card:hover {
    transform: translateY(-8px);

    border-color: #20a85c;

    box-shadow:
        0 25px 55px rgba(0,0,0,.10);
}

.quality-card:hover::after {
    width: 100%;
}

.quality-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.quality-card-top > span:first-child {
    color: #20a85c;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.card-status {
    padding: 6px 8px;

    border: 1px solid #dfe4e1;

    color: #777e79;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   CARD ICON
========================================================= */

.quality-card-icon {
    width: 70px;
    height: 70px;

    position: relative;

    margin: 25px 0;

    border: 1px solid rgba(32,168,92,.35);

    transform: rotate(45deg);

    transition: .45s ease;
}

.quality-card-icon span {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #20a85c;
}

.quality-card-icon span:nth-child(1) {
    top: 7px;
    right: 7px;
}

.quality-card-icon span:nth-child(2) {
    bottom: 7px;
    left: 7px;
}

.quality-card-icon span:nth-child(3) {
    width: 18px;
    height: 18px;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    background: #fff;

    border: 1px solid #20a85c;
}

.quality-card:hover .quality-card-icon {
    transform: rotate(135deg);

    border-color: #20a85c;
}

.quality-card > div:last-child > p:first-child {
    color: #15964f;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 9px;
}

.quality-card h3 {
    font-size: 20px;

    line-height: 1.05;

    letter-spacing: -.6px;
}

.quality-card h3 span {
    display: block;

    color: #20a85c;
}

.quality-card-line {
    width: 35px;
    height: 2px;

    margin: 16px 0;

    background: #20a85c;
}

.card-description {
    color: #777e79 !important;

    font-size: 11px !important;

    line-height: 1.65;

    font-weight: 400 !important;

    letter-spacing: 0 !important;
}


/* =========================================================
   QUALITY SHOWCASE
========================================================= */

.quality-showcase {
    padding: 110px 0;

    background: #fff;
}

.quality-showcase-box {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    min-height: 500px;

    background: #f5f7f5;

    border: 1px solid #e0e5e1;

    overflow: hidden;
}


/* image placeholder */

.quality-showcase-image {
    min-height: 500px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(32,168,92,.16),
            transparent 35%
        ),
        #111;
}

.image-placeholder {
    position: absolute;

    inset: 25px;

    border: 1px dashed rgba(255,255,255,.2);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #fff;
}

.image-placeholder span {
    color: #20a85c;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.image-placeholder p {
    margin-top: 10px;

    color: #aaa;

    font-size: 11px;
}


/* showcase content */

.quality-showcase-content {
    padding: 65px 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.quality-showcase-content h2 {
    margin-top: 16px;

    font-size: clamp(35px,4vw,52px);

    line-height: .95;

    letter-spacing: -2px;
}

.quality-showcase-content h2 span {
    display: block;

    color: #20a85c;
}

.quality-showcase-content > p:not(.section-label) {
    margin-top: 22px;

    color: #707772;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   QUALITY POINTS
========================================================= */

.quality-points {
    margin-top: 30px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.quality-points > div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px;

    background: #fff;

    border: 1px solid #e0e5e1;

    transition: .35s ease;
}

.quality-points > div:hover {
    border-color: #20a85c;

    transform: translateX(4px);
}

.quality-points span {
    color: #20a85c;

    font-size: 8px;

    font-weight: 800;
}

.quality-points p {
    color: #555d58;

    font-size: 9px;

    line-height: 1.4;
}


/* =========================================================
   PRINCIPLES
========================================================= */

.quality-principles {
    padding: 105px 0 115px;

    background: #f6f7f6;

    border-top: 1px solid #e3e7e4;
}

.principles-heading {
    margin-bottom: 55px;
}

.principles-heading h2 {
    margin-top: 15px;

    font-size: clamp(38px,5vw,58px);

    line-height: .95;

    letter-spacing: -2.5px;
}

.principles-heading h2 span {
    color: #20a85c;
}

.principles-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 15px;
}

.principle {
    padding: 25px;

    min-height: 220px;

    background: #fff;

    border: 1px solid #e0e5e1;

    position: relative;

    transition: .4s ease;
}

.principle:hover {
    transform: translateY(-7px);

    border-color: #20a85c;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);
}

.principle > span {
    color: #20a85c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.principle h3 {
    margin-top: 55px;

    font-size: 20px;

    letter-spacing: -.5px;
}

.principle p {
    margin-top: 10px;

    color: #777e79;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   CTA
========================================================= */

.quality-cta {
    padding: 90px 0;

    background: #111;

    color: #fff;
}

.quality-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.quality-cta h2 {
    margin-top: 15px;

    font-size: clamp(35px,5vw,58px);

    line-height: .95;

    letter-spacing: -2px;
}

.quality-cta h2 span {
    color: #20a85c;
}

.quality-cta p:not(.section-label) {
    margin-top: 16px;

    color: #aeb5b0;

    font-size: 13px;

    line-height: 1.7;
}

.quality-cta .premium-btn {
    flex-shrink: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #f5f6f5;

    border-top: 1px solid #e0e5e1;

    padding-top: 65px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr .7fr .9fr 1fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer p,
.footer a {
    color: #737a76;

    font-size: 11px;

    line-height: 1.8;
}

.footer > .container:first-child p {
    margin-top: 15px;
}

.footer h4 {
    margin-bottom: 15px;

    font-size: 11px;

    letter-spacing: 1px;
}

.footer-grid > div:not(:first-child) a {
    display: block;

    margin-bottom: 7px;

    transition: .3s ease;
}

.footer-grid > div:not(:first-child) a:hover {
    color: #15964f;
}

.footer-bottom {
    border-top: 1px solid #dfe4e1;

    padding: 18px 0;
}

.footer-bottom p {
    font-size: 9px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media(max-width:1000px) {

    .nav {
        gap: 15px;
    }

    .nav a:not(.nav-button) {
        display: none;
    }

    .quality-hero-inner {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 0;
    }

    .quality-hero-content {
        padding-bottom: 20px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .quality-buttons {
        justify-content: center;
    }

    .quality-hero-visual {
        height: 390px;
    }

    .quality-intro-grid,
    .section-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .quality-grid,
    .principles-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .quality-showcase-box {
        grid-template-columns: 1fr;
    }

    .quality-showcase-image {
        min-height: 380px;
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media(max-width:600px) {

    .header {
        height: 68px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-button {
        padding: 10px 12px;
    }

    .quality-hero {
        min-height: auto;
    }

    .quality-hero-content {
        padding: 75px 0 10px;
    }

    .quality-hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .quality-hero-visual {
        height: 330px;
    }

    .orbit-one {
        width: 270px;
        height: 170px;
    }

    .orbit-two {
        width: 350px;
        height: 220px;
    }

    .quality-core {
        width: 170px;
        height: 170px;
    }

    .quality-core::before {
        width: 125px;
        height: 125px;
    }

    .quality-core-inner {
        width: 80px;
        height: 80px;
    }

    .quality-core-inner span {
        font-size: 19px;
    }

    .point-one {
        top: 55px;
        right: 60px;
    }

    .point-two {
        bottom: 60px;
        left: 55px;
    }

    .point-three {
        right: 5px;
    }

    .quality-intro,
    .quality-process,
    .quality-showcase,
    .quality-principles {
        padding: 80px 0;
    }

    .quality-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .quality-card {
        min-height: 330px;
    }

    .quality-showcase-content {
        padding: 45px 25px;
    }

    .quality-showcase-image {
        min-height: 300px;
    }

    .quality-points {
        grid-template-columns: 1fr;
    }

    .quality-cta {
        padding: 70px 0;
    }

    .quality-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

}
/* =========================================================
   IPC QUALITY STANDARDS — PREMIUM SECTION
========================================================= */

.ipc-quality {
    position: relative;
    padding: 105px 0 115px;
    background: #f4f6f4;
    color: #111;
    overflow: hidden;
}


/* subtle technical background */

.ipc-quality::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    right: -220px;
    top: -220px;

    border-radius: 50%;

    background: rgba(32, 168, 92, .07);

    filter: blur(70px);

    pointer-events: none;
}


.ipc-quality::after {
    content: "";

    position: absolute;
    left: -180px;
    bottom: -220px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 1px solid rgba(32, 168, 92, .08);

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.ipc-quality-heading {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr .72fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 52px;
}


.ipc-quality-heading .section-label {
    color: #15964f;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.8px;
}


.ipc-quality-heading h2 {
    margin-top: 15px;

    max-width: 700px;

    font-size: clamp(38px, 5vw, 61px);

    line-height: .94;

    letter-spacing: -2.5px;
}


.ipc-quality-heading h2 span {
    display: block;

    color: #15964f;
}


.ipc-quality-heading > p {
    max-width: 390px;

    color: #737b76;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   STANDARDS GRID
========================================================= */

.ipc-quality-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* =========================================================
   STANDARD CARD
========================================================= */

.ipc-standard-card {
    position: relative;

    min-height: 335px;

    display: grid;

    grid-template-columns: .92fr 1.08fr;

    background: #fff;

    border: 1px solid #dce2de;

    overflow: hidden;

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}


.ipc-standard-card:hover {
    transform: translateY(-8px);

    border-color: rgba(21, 150, 79, .55);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .10),
        0 0 35px rgba(21, 150, 79, .07);
}


/* =========================================================
   IMAGE
========================================================= */

.ipc-standard-image {
    position: relative;

    min-height: 335px;

    overflow: hidden;

    background: #101411;
}


.ipc-standard-image::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, .12),
            transparent 50%,
            rgba(21, 150, 79, .13)
        );

    pointer-events: none;
}


.ipc-standard-image::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -75px;
    bottom: -75px;

    border-radius: 50%;

    border: 1px solid rgba(32, 168, 92, .4);

    box-shadow:
        0 0 35px rgba(32, 168, 92, .12);

    transition: .6s ease;
}


.ipc-standard-card:hover .ipc-standard-image::after {
    transform: scale(1.45);
}


.ipc-standard-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform .8s cubic-bezier(.2, .7, .2, 1),
        filter .8s ease;
}


.ipc-standard-card:hover .ipc-standard-image img {
    transform: scale(1.08);

    filter:
        brightness(1.06)
        contrast(1.04);
}


/* image label */

.ipc-standard-image span {
    position: absolute;

    left: 13px;
    top: 13px;

    z-index: 3;

    padding: 7px 10px;

    background: rgba(0, 0, 0, .58);

    border: 1px solid rgba(255, 255, 255, .28);

    color: #fff;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;

    backdrop-filter: blur(5px);
}


/* =========================================================
   CONTENT
========================================================= */

.ipc-standard-content {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 30px 27px;
}


.ipc-standard-content::before {
    content: "";

    position: absolute;

    left: 0;
    top: 28px;

    width: 2px;
    height: 42px;

    background: #15964f;

    transition: .4s ease;
}


.ipc-standard-card:hover .ipc-standard-content::before {
    height: 65px;
}


.ipc-standard-content small {
    color: #15964f;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.ipc-standard-content h3 {
    margin-top: 13px;

    font-size: clamp(25px, 3vw, 34px);

    line-height: 1;

    letter-spacing: -1.3px;
}


.ipc-standard-content p {
    margin-top: 18px;

    color: #707873;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   PREMIUM BUTTON
========================================================= */

.ipc-standard-content .premium-btn {
    width: fit-content;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 17px;

    margin-top: 25px;

    padding: 11px 14px;

    border: 1px solid #cfd7d2;

    background: #fff;

    color: #111;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease,
        transform .35s ease;
}


.ipc-standard-content .premium-btn span {
    color: #15964f;

    font-size: 14px;

    transition: .35s ease;
}


.ipc-standard-content .premium-btn:hover {
    background: #15964f;

    border-color: #15964f;

    color: #fff;

    transform: translateY(-3px);
}


.ipc-standard-content .premium-btn:hover span {
    color: #fff;

    transform: translate(4px, -4px);
}


/* =========================================================
   BOTTOM STATUS BAR
========================================================= */

.ipc-quality-bottom {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    padding-top: 17px;

    border-top: 1px solid #d9dfdb;
}


.ipc-status-dot {
    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: #15964f;

    box-shadow:
        0 0 0 4px rgba(21, 150, 79, .08),
        0 0 12px rgba(21, 150, 79, .45);

    animation: ipcPulse 2s ease-in-out infinite;
}


@keyframes ipcPulse {

    0%,
    100% {
        opacity: .65;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}


.ipc-quality-bottom p {
    color: #78817c;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


.ipc-quality-bottom a {
    margin-left: auto;

    color: #15964f;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: .3s ease;
}


.ipc-quality-bottom a b {
    margin-left: 5px;

    font-size: 13px;

    font-weight: 400;

    transition: .3s ease;
}


.ipc-quality-bottom a:hover {
    color: #111;
}


.ipc-quality-bottom a:hover b {
    transform: translate(3px, -3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .ipc-quality-heading {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .ipc-quality-heading > p {
        max-width: 600px;
    }


    .ipc-quality-grid {
        grid-template-columns: 1fr;
    }


    .ipc-standard-card {
        min-height: 320px;
    }


    .ipc-standard-image {
        min-height: 320px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ipc-quality {
        padding: 75px 0 85px;
    }


    .ipc-quality-heading {
        margin-bottom: 35px;
    }


    .ipc-quality-heading h2 {
        font-size: 40px;

        letter-spacing: -1.8px;
    }


    .ipc-quality-grid {
        gap: 15px;
    }


    .ipc-standard-card {
        display: block;

        min-height: auto;
    }


    .ipc-standard-image {
        height: 225px;
        min-height: 225px;
    }


    .ipc-standard-content {
        min-height: 270px;

        padding: 27px 22px;
    }


    .ipc-standard-content h3 {
        font-size: 28px;
    }


    .ipc-quality-bottom {
        flex-wrap: wrap;

        gap: 9px;
    }


    .ipc-quality-bottom p {
        flex: 1;
    }


    .ipc-quality-bottom a {
        width: 100%;

        margin-left: 16px;

        margin-top: 5px;
    }

}
/* =========================================================
   IPC-A-610 QUALITY IMAGE
========================================================= */
.quality-showcase-image {
    position: relative;
    overflow: hidden;
    background: #f3f5f3;
    border: 1px solid #dfe4df;
    min-height: 520px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.quality-showcase-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: contain;
    object-position: right center;
    transition: transform .6s ease;
}

.quality-showcase-image:hover img {
    transform: scale(1.025);
}
/* =========================================================
   SILENT KILLER — CLEAN PREMIUM FOOTER
========================================================= */

.footer {
    background: #0b0d0c;
    color: #ffffff;
    border-top: 1px solid #202522;
    padding: 65px 0 0;
}

.footer-grid {
    width: min(1180px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 55px;
}

.footer .logo {
    display: inline-block;
    margin-bottom: 16px;

    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.footer .logo span {
    color: #18a558;
}

.footer p {
    max-width: 330px;
    color: #858c87;
    font-size: 13px;
    line-height: 1.8;
}

.footer h4 {
    margin-bottom: 18px;

    color: #18a558;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer a {
    display: block;
    width: fit-content;

    margin-bottom: 11px;

    color: #8d948f;
    font-size: 12px;

    transition: color .3s ease, transform .3s ease;
}

.footer a:hover {
    color: #18a558;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid #202522;
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #666d68;
    font-size: 10px;
    letter-spacing: .5px;
}

.footer-bottom a {
    display: inline-block;
    margin: 0;
    color: #18a558;
    font-size: 10px;
}


/* ================= FOOTER MOBILE ================= */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 35px;
    }

}

@media (max-width: 600px) {

    .footer {
        padding-top: 50px;
    }

    .footer-grid {
        width: 90%;
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
        padding-bottom: 40px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom .container {
        width: 90%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}

@media (max-width: 400px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

}
