:root {
    --green: #14c145;
    --green-dark: #0a9d35;
    --blue: #006caa;
    --navy: #001638;
    --text: #243042;
    --muted: #697386;
    --bg: #f5f8fb;
    --line: #e5edf5;
    --shadow: 0 18px 50px rgba(0, 22, 56, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, "Helvetica Neue", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: #fff;
    border-bottom: 1px solid #edf2f7;
}

.header-inner {
    min-height: 122px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    color: var(--navy);
    font-weight: 900;
}

.logo-mark {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #7be65e);
    color: #fff;
    font-size: 34px;
    box-shadow: 0 8px 18px rgba(20, 193, 69, .28);
}

.logo-text {
    font-size: 22px;
    letter-spacing: .04em;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex: 1;
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    padding: 48px 0 41px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 0;
    height: 3px;
    background: var(--navy);
    transform: translateX(-50%);
    transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a:first-child::after {
    width: 84px;
}

.quote-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 24px;
    border: 0;
    border-radius: 6px;
    background: var(--green);
    color: #fff;
    font: inherit;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(20, 193, 69, .28);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.quote-button {
    min-width: 134px;
    padding: 0 22px;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.button:hover,
.quote-button:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.button-light,
.button-outline {
    background: #fff;
    color: var(--navy);
    box-shadow: inset 0 0 0 1px var(--line);
}

.button-light:hover,
.button-outline:hover {
    background: var(--navy);
    color: #fff;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--navy);
    font-size: 22px;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fbff 0%, #eef8f3 100%);
}

.hero::before {
    content: "";
    position: absolute;
    right: -16%;
    top: -35%;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 193, 69, .22), rgba(20, 193, 69, 0) 62%);
}

.hero-grid {
    position: relative;
    min-height: 640px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    padding: 76px 0 92px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(20, 193, 69, .1);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 14px 0 12px;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: 0;
}

h1 {
    max-width: 720px;
    font-size: clamp(42px, 6vw, 76px);
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.hero-copy p,
.section-head p,
.section-intro,
.about-grid p {
    color: var(--muted);
    font-size: 17px;
}

.hero-copy p {
    max-width: 640px;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 34px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 26px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.hero-stats div {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    text-align: center;
}

.hero-stats strong {
    display: block;
    color: var(--navy);
    font-size: 22px;
}

.hero-stats span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 64px 0 36px;
    margin-top: 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

.category-card {
    min-height: 190px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 22, 56, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(0, 22, 56, .13);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 22, 56, .1), rgba(0, 22, 56, .68));
}

.category-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.category-card span {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.section {
    padding: 86px 0;
}

.section-soft {
    background: var(--bg);
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.certificate-grid {
    display: grid;
    place-items: center;
}

.about-image {
    padding: 16px;
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 26px 0 30px;
}

.check-grid span {
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    font-weight: 800;
}

.check-grid span::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(20, 193, 69, .12);
    color: var(--green-dark);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
}

.section-head p {
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 22, 56, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(0, 22, 56, .12);
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.product-card div {
    padding: 22px;
}

.product-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 22px;
}

.product-card p {
    min-height: 48px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.product-card a {
    color: var(--green-dark);
    font-weight: 900;
}

.center {
    text-align: center;
}

.section-intro {
    max-width: 760px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.process-grid div {
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0, 22, 56, .05);
}

.process-grid b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(20, 193, 69, .12);
    color: var(--green-dark);
    font-size: 20px;
}

.process-grid h3 {
    margin: 18px 0 8px;
    color: var(--navy);
    font-size: 19px;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.certificate-panel {
    width: min(920px, 100%);
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 54px 64px;
    border-radius: 30px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
}

.certificate-panel h2 {
    color: #fff;
}

.certificate-panel p {
    max-width: 620px;
    color: #c9d4e4;
}

.faq-box {
    padding: 44px 10px 56px;
    border-radius: 32px;
    background: #f2f6fb;
}

.faq-box h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
}

.faq-list {
    display: grid;
    gap: 11px;
    margin-top: 24px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #e6edf5;
    background: #fff;
}

.faq-item button {
    width: 100%;
    min-height: 57px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 14px 26px;
    border: 0;
    background: #fff;
    color: var(--navy);
    font: inherit;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    background: #55c900;
    color: #fff;
    font-weight: 800;
}

.faq-answer {
    display: none;
    padding: 0 28px 22px 65px;
    color: #4b5d73;
}

.faq-item.open .faq-answer {
    display: block;
}

.contact-section {
    background: linear-gradient(135deg, var(--navy), #073a62);
    color: #fff;
}

.contact-section h2 {
    color: #fff;
}

.contact-section p {
    color: #d4deec;
}

.contact-card {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 14px;
    font: inherit;
}

.contact-card input {
    height: 50px;
}

.contact-card textarea {
    height: 128px;
    padding-top: 13px;
    resize: vertical;
}

.contact-card .button {
    width: 100%;
}

.form-message {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f1fbf4;
    color: #0f7a35;
    font-weight: 800;
}

.form-message.error {
    background: #fff1f2;
    color: #b42318;
}

.site-footer {
    padding: 58px 0 86px;
    background: var(--navy);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 72px;
    align-items: start;
    justify-content: center;
}

.logo-footer {
    color: #fff;
}

.footer-brand p,
.site-footer a,
.site-footer p {
    color: #fff;
}

.site-footer h3 {
    margin: 10px 0 22px;
    font-size: 18px;
}

.site-footer div > a {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.copyright {
    margin: 24px 0 0;
    text-align: center;
    font-size: 13px;
}

.sticky-contact {
    position: fixed;
    left: 50%;
    bottom: 12px;
    z-index: 100;
    width: min(1180px, calc(100% - 24px));
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
    pointer-events: none;
}

.sticky-contact a {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    text-align: center;
    font-weight: 900;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    pointer-events: auto;
}

.sticky-contact a:nth-child(2) {
    background: var(--blue);
}

.online-consult {
    border: 0;
    cursor: pointer;
    position: fixed;
    right: 22px;
    top: 50%;
    z-index: 101;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 168px;
    height: 58px;
    padding: 10px 16px 10px 10px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    box-shadow: 0 16px 36px rgba(0, 22, 56, .2);
    transform: translateY(-50%);
    transition: opacity .18s ease, transform .2s ease, background .2s ease;
}

.online-consult.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(.86);
}

.online-consult:hover {
    background: var(--green-dark);
    transform: translateY(-50%) scale(1.04);
}

.online-consult-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--green-dark);
    font-size: 22px;
    font-weight: 900;
}

.online-consult > span:last-child {
    display: block;
    max-width: 112px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    text-align: left;
}

.chat-widget {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 120;
    display: flex;
    flex-direction: column;
    width: min(380px, calc(100vw - 32px));
    height: min(580px, calc(100vh - 120px));
    overflow: hidden;
    border: 1px solid #dce7ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(0, 28, 64, .2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(.98);
    transition: opacity .2s ease, transform .2s ease;
}

.chat-widget.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 16px;
    background: var(--blue-dark);
    color: #fff;
}

.chat-widget-header strong,
.chat-widget-header small {
    display: block;
}

.chat-widget-header strong {
    font-size: 17px;
}

.chat-widget-header small {
    margin-top: 5px;
    color: #b9d0e7;
    font-size: 12px;
}

.chat-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px 14px;
    background: #f5f8fa;
}

.chat-empty {
    padding: 34px 18px;
    color: #7a8da1;
    text-align: center;
    font-size: 13px;
}

.chat-message {
    display: flex;
    margin: 0 0 12px;
}

.chat-message.visitor {
    justify-content: flex-end;
}

.chat-bubble {
    max-width: 82%;
    padding: 10px 12px;
    border-radius: 13px 13px 13px 4px;
    background: #fff;
    color: #17324d;
    font-size: 14px;
    line-height: 1.55;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.chat-message.visitor .chat-bubble {
    border-radius: 13px 13px 4px 13px;
    background: var(--green);
    color: #fff;
}

.chat-time {
    display: block;
    margin-top: 4px;
    color: #8aa0b2;
    font-size: 10px;
}

.chat-message.visitor .chat-time {
    color: rgba(255, 255, 255, .75);
    text-align: right;
}

.chat-form {
    padding: 12px;
    border-top: 1px solid #e5edf2;
    background: #fff;
}

.chat-contact-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.chat-form input,
.chat-form textarea {
    width: 100%;
    border: 1px solid #d7e3eb;
    border-radius: 8px;
    background: #fff;
    color: #15304c;
    font: inherit;
    font-size: 13px;
    outline: 0;
}

.chat-form input {
    min-height: 36px;
    padding: 8px 10px;
}

.chat-form textarea {
    min-height: 68px;
    padding: 9px 10px;
    resize: vertical;
}

.chat-form input:focus,
.chat-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(19, 195, 75, .1);
}

.chat-form > button {
    width: 100%;
    min-height: 40px;
    margin-top: 8px;
    border: 0;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
}

.chat-form .chat-end-button {
    margin-top: 8px;
    border: 1px solid #d8e5ec;
    background: #fff;
    color: #557089;
}

.chat-form .chat-end-button:hover {
    border-color: #ef5b63;
    color: #d73535;
}

.chat-error {
    min-height: 16px;
    margin: 6px 0 0;
    color: #d73535;
    font-size: 11px;
}

@media (max-width: 1024px) {
    .header-inner {
        min-height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
        gap: 16px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 20px;
    }

    .main-nav a {
        padding: 12px 0;
    }

    .main-nav a::after {
        bottom: 2px;
        width: 0;
    }

    .main-nav a:hover::after,
    .main-nav a:first-child::after {
        width: 48px;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header-tools {
        margin-left: auto;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-grid {
        min-height: auto;
        padding-bottom: 72px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .logo-mark {
        width: 46px;
        height: 46px;
        font-size: 26px;
    }

    .logo-text {
        font-size: 17px;
    }

    .main-nav {
        display: none;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-button {
        display: none;
    }

    .header-tools {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }

    .section {
        padding: 58px 0;
    }

    .hero-grid {
        padding: 56px 0 48px;
    }

    h1 {
        font-size: 42px;
    }

    .category-grid,
    .product-grid,
    .process-grid,
    .hero-stats,
    .check-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .certificate-panel {
        min-height: auto;
        padding: 36px 28px;
        border-radius: 24px;
    }

    .category-grid {
        margin-top: 0;
        padding: 42px 0 28px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .faq-box {
        padding: 32px 10px;
        border-radius: 24px;
    }

    .faq-item button {
        padding: 13px 16px;
        font-size: 16px;
    }

    .faq-answer {
        padding-left: 55px;
    }

    .site-footer {
        padding-bottom: 120px;
    }

    .sticky-contact {
        flex-direction: column;
    }

    .online-consult {
        right: 14px;
        top: auto;
        bottom: 104px;
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
        padding: 8px;
        border-radius: 50%;
        transform: none;
    }

    .online-consult:hover {
        transform: translateY(-3px);
    }

    .online-consult span:not(.online-consult-icon) {
        display: none;
    }

    .chat-widget {
        right: 14px;
        bottom: 174px;
        width: calc(100vw - 28px);
        height: min(560px, calc(100vh - 220px));
    }

    .chat-contact-fields {
        grid-template-columns: 1fr;
    }
}

.main-nav a.active::after {
    width: 48px;
}

.coa-hero {
    padding: 44px 0 34px;
    background: linear-gradient(135deg, #f2fbf7 0%, #f5f9fc 55%, #e9f7f0 100%);
    text-align: center;
}

.coa-hero h1 {
    max-width: none;
    margin: 10px 0 8px;
    color: var(--navy);
    font-size: clamp(34px, 3.8vw, 46px);
    line-height: 1.12;
}

.coa-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.coa-catalog {
    min-height: 54vh;
    padding-top: 42px;
}

.coa-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.coa-section-head .eyebrow {
    font-size: 11px;
}

.coa-section-head h2 {
    margin: 6px 0 0;
    color: var(--navy);
    font-size: 24px;
}

.coa-count {
    padding: 9px 13px;
    border: 1px solid #d9e9e1;
    border-radius: 999px;
    background: #eef9f2;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
}

.coa-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px;
}

.coa-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 22, 56, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.coa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 22, 56, .12);
}

.coa-product-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #edf3f7;
}

.coa-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.coa-card-body {
    padding: 20px;
}

.coa-card-body h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 21px;
}

.coa-card-body p {
    min-height: 54px;
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.65;
}

.coa-report-trigger,
.coa-pdf-link {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #dce8ee;
    border-radius: 10px;
    background: #f8fbfc;
    color: var(--navy);
    text-align: left;
    font-weight: 800;
}

.coa-report-trigger {
    padding: 7px 12px 7px 7px;
    cursor: pointer;
}

.coa-report-trigger:hover {
    background: #eef8f3;
    color: var(--green-dark);
    transform: none;
}

.coa-report-thumb {
    width: 52px;
    height: 38px;
    flex: 0 0 52px;
    object-fit: cover;
    border-radius: 6px;
}

.coa-pdf-link {
    padding: 7px 12px 7px 7px;
}

.coa-pdf-link:hover {
    color: var(--green-dark);
}

.coa-report-icon {
    width: 52px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    border-radius: 6px;
    background: #e83c32;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.coa-empty {
    padding: 80px 24px;
    border: 1px dashed #cddde6;
    border-radius: 14px;
    background: #fff;
    color: var(--muted);
    text-align: center;
}

.coa-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

body.modal-open {
    overflow: hidden;
}

.coa-modal.open {
    display: flex;
}

.coa-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 15, 33, .82);
}

.coa-modal-dialog {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 94vw);
    max-height: 92vh;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

.coa-modal-image {
    display: block;
    max-width: 100%;
    max-height: calc(92vh - 28px);
    object-fit: contain;
}

.coa-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .coa-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .coa-hero {
        padding: 38px 0 32px;
    }

    .coa-hero h1 {
        font-size: 34px;
    }

    .coa-hero p {
        font-size: 16px;
    }

    .coa-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .coa-grid {
        grid-template-columns: 1fr !important;
    }

    .coa-card-body {
        padding: 20px;
    }

    .coa-modal {
        padding: 16px;
    }

    .coa-modal-close {
        top: -12px;
        right: -8px;
    }
}
