
body {
    margin: 0;
    padding: 0;
    font-family: "Epilogue", sans-serif;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.co-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.co-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #6B8E23;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.co-logo:hover {
    color: #5A7A1D;
}

.co-nav {
    display: flex;
}

.co-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.co-nav-link {
    color: #6B8E23;
    text-decoration: none;
    padding: calc(20px / 2) 24px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.co-nav-link:hover,
.co-nav-link:focus-visible {
    color: #5A7A1D;
    background-color: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(107, 142, 35, 0.4);
    outline-offset: 2px;
}

.co-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
}

.co-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.co-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.co-burger-ico::before,
.co-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.co-burger-ico::before {
    top: -8px;
}

.co-burger-ico::after {
    bottom: -8px;
}

.co-burger[aria-expanded="true"] .co-burger-ico {
    background-color: transparent;
}

.co-burger[aria-expanded="true"] .co-burger-ico::before {
    transform: translateY(8px) rotate(45deg);
}

.co-burger[aria-expanded="true"] .co-burger-ico::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .co-burger {
        display: block;
    }

    .co-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 100vw);
        background-color: #FFFFFF;
        border-left: 1px solid #E9ECEF;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: calc(20px * 2) 24px;
        z-index: 101;
        overflow-y: auto;
    }

    .co-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .co-nav-list {
        flex-direction: column;
        gap: calc(16px / 2);
        margin-top: calc(20px * 2);
    }

    .co-nav-link {
        display: block;
        padding: 20px 24px;
    }

    .co-head-in {
        position: relative;
    }
}

.co-foot {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.co-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.co-foot-sec {
    display: flex;
    flex-direction: column;
}

.co-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.co-foot-note {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    max-width: 300px;
}

.co-foot-copy {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: auto;
}

.co-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.co-foot-nav,
.co-foot-social,
.co-foot-legal,
.co-foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-foot-nav li,
.co-foot-social li,
.co-foot-legal li {
    margin-bottom: 0.6rem;
}

.co-foot-contact p {
    margin: 0 0 0.6rem 0;
}

.co-foot a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.co-foot a:hover {
    color: #007bff;
    text-decoration: underline;
}

.co-foot-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.co-foot-legal li {
    display: inline-block;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .co-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .co-foot-sec {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 2rem;
    }

    .co-foot-sec:last-child {
        border-bottom: none;
    }

    .co-foot-legal li {
        display: block;
        margin-right: 0;
    }
}


.co-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.co-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.co-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.9) 100%);
    opacity: 0.7;
    z-index: -1;
}

.co-hero-body {
    max-width: 900px;
    padding: clamp(16px, 3vw, 32px);
    z-index: 1;
}

.co-hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.co-hero p {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    margin: 0 auto 0;
    max-width: 700px;
}

.co-cta {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: #212529;
    color: #FFFFFF;
}

.co-cta-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.co-cta h2 {
    margin-bottom: 20px;
    font-size: clamp(28px, 4vw, 40px);
}

.co-cta p {
    max-width: 700px;
    margin: 0 auto calc(20px * 1.5);
    color: #E9ECEF;
}

.co-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 1rem;
}

.co-cta-btn--main {
    background-color: #6B8E23;
    color: #FFFFFF;
    border-color: #6B8E23;
}

.co-cta-btn--main:hover {
    background-color: #5A7A1D;
    border-color: #5A7A1D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.co-clar {

    padding: clamp(18px, 3vw, 44px);
    background: #6B8E23;
    color: #FFFFFF;
}

.co-clar-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-clar-head {
    margin-bottom: clamp(14px, 2.2vw, 22px);
}

.co-clar-title {
    margin: 0;
    font-size: clamp(24px, 4.4vw, 42px);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.co-clar-sub {
    margin: 10px 0 0;
    max-width: 70ch;
    color: rgba(255, 255, 255, .82);
}

.co-clar-rail {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Световой “луч” двигается постоянно */
.co-clar-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 48%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: translateX(-120%);
    animation: c2Beam 6.2s linear infinite;
    pointer-events: none;
}

@keyframes c2Beam {
    0% {
        transform: translateX(-120%)
    }
    55% {
        transform: translateX(160%)
    }
    100% {
        transform: translateX(160%)
    }
}

.co-clar-list {
    display: grid;
    gap: 10px;
    padding: 12px;
}

.co-clar-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.co-clar-row.co-hot {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}

.co-clar-tag {
    align-self: start;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 800;
    white-space: nowrap;
    color: rgba(255, 255, 255, .92);
    min-width: 200px;
    text-align: center;
}

.co-clar-q {
    font-weight: 900;
    letter-spacing: -.01em;
    margin-bottom: 6px;
}

.co-clar-a {
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

@media (max-width: 720px) {
    .co-clar-row {
        grid-template-columns:1fr
    }

    .co-clar-tag {
        justify-self: start
    }
}

@media (prefers-reduced-motion: reduce) {
    .co-clar-beam {
        animation: none;
    }
}

.co-plan {

    padding: clamp(18px, 3vw, 44px);
    background: #FFFFFF;
    color: #212529;
}

.co-plan-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-plan-head {
    margin-bottom: clamp(14px, 2.2vw, 22px);
}

.co-plan-title {
    margin: 0;
    font-size: clamp(24px, 4.2vw, 40px);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.co-plan-sub {
    margin: 10px 0 0;
    max-width: 72ch;
    color: #6C757D;
}

.co-plan-grid {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    gap: 14px;
}

.co-plan-card {
    grid-column: span 4;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.co-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 86, 179, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.co-plan-top {
    padding: 14px;
    border-radius: 16px;
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
}

.co-plan-name {
    font-weight: 900;
    letter-spacing: -.01em;
    color: #212529;
}

.co-plan-price {
    margin-top: 8px;
    font-weight: 900;
    font-size: clamp(18px, 2.4vw, 28px);
    letter-spacing: -.02em;
    color: #6B8E23;
}

.co-plan-body {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.co-plan-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.co-plan-ok {
    width: 24px;
    height: 24px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(107, 142, 35, 0.1);
    color: #6B8E23;
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-weight: 900;
    flex: 0 0 auto;
    animation: plansL1Ok 2.8s ease-in-out infinite;
}

.co-plan-card:nth-child(2) .co-plan-ok {
    animation-duration: 3.3s
}

.co-plan-card:nth-child(3) .co-plan-ok {
    animation-duration: 3.8s
}

@keyframes plansL1Ok {
    0%, 100% {
        transform: translateY(0px)
    }
    50% {
        transform: translateY(-2px)
    }
}

.co-plan-text {
    color: #6C757D;
    line-height: 1.6;
}

.co-plan-btn {
    margin-top: 14px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #6B8E23;
    color: #FFFFFF;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.co-plan-btn:hover {
    background: #5A7A1D;
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .co-plan-card {
        grid-column: span 6;
    }
}

@media (max-width: 640px) {
    .co-plan-card {
        grid-column: span 12;
    }
}

@media (prefers-reduced-motion: reduce) {
    .co-plan-ok {
        animation: none;
    }
}

.co-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.co-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #6B8E23;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.co-logo:hover {
    color: #5A7A1D;
}

.co-nav {
    display: flex;
}

.co-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.co-nav-link {
    color: #6B8E23;
    text-decoration: none;
    padding: calc(20px / 2) 24px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.co-nav-link:hover,
.co-nav-link:focus-visible {
    color: #5A7A1D;
    background-color: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(107, 142, 35, 0.4);
    outline-offset: 2px;
}

.co-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
}

.co-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.co-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.co-burger-ico::before,
.co-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.co-burger-ico::before {
    top: -8px;
}

.co-burger-ico::after {
    bottom: -8px;
}

.co-burger[aria-expanded="true"] .co-burger-ico {
    background-color: transparent;
}

.co-burger[aria-expanded="true"] .co-burger-ico::before {
    transform: translateY(8px) rotate(45deg);
}

.co-burger[aria-expanded="true"] .co-burger-ico::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .co-burger {
        display: block;
    }

    .co-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 100vw);
        background-color: #FFFFFF;
        border-left: 1px solid #E9ECEF;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: calc(20px * 2) 24px;
        z-index: 101;
        overflow-y: auto;
    }

    .co-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .co-nav-list {
        flex-direction: column;
        gap: calc(16px / 2);
        margin-top: calc(20px * 2);
    }

    .co-nav-link {
        display: block;
        padding: 20px 24px;
    }

    .co-head-in {
        position: relative;
    }
}

.co-foot {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.co-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.co-foot-sec {
    display: flex;
    flex-direction: column;
}

.co-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.co-foot-note {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    max-width: 300px;
}

.co-foot-copy {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: auto;
}

.co-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.co-foot-nav,
.co-foot-social,
.co-foot-legal,
.co-foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-foot-nav li,
.co-foot-social li,
.co-foot-legal li {
    margin-bottom: 0.6rem;
}

.co-foot-contact p {
    margin: 0 0 0.6rem 0;
}

.co-foot a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.co-foot a:hover {
    color: #007bff;
    text-decoration: underline;
}

.co-foot-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.co-foot-legal li {
    display: inline-block;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .co-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .co-foot-sec {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 2rem;
    }

    .co-foot-sec:last-child {
        border-bottom: none;
    }

    .co-foot-legal li {
        display: block;
        margin-right: 0;
    }
}


.co-id {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.9) 100%);
    color: #FFFFFF;
    padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
    position: relative;
    overflow: hidden;
}

.co-id::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(107, 142, 35, 0.35), transparent 40%);
    opacity: 0.8;
    pointer-events: none;
}

.co-id-in {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.co-id-head {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
    transform: translateY(-20px);
}

.co-id-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    color: #6B8E23;
    margin: 0 0 0.75rem;
}

.co-id h2 {
    font-size: clamp(36px, 5vw, 60px);
    margin: 0 0 1rem;
    color: #212529;
}

.co-id-lead {
    margin: 0 auto;
    max-width: 720px;
    color: #6C757D;
    font-size: clamp(18px, 2.4vw, 22px);
}

.co-id-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 32px);
}

.co-id-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(233, 236, 239, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    transform: translateY(30px);
    color: #212529;
    position: relative;
}

.co-id-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.25), rgba(107, 142, 35, 0));


    mask-composite: exclude;
    pointer-events: none;
}

.co-id-icon {
    width: 64px;
    height: 64px;
    border-radius: 24px;
    background: rgba(107, 142, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 1.25rem;
    color: #6B8E23;
}

.co-id-meta {
    margin-bottom: 0.75rem;
}

.co-id-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #6B8E23;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.co-id-card h3 {
    margin: 0.35rem 0 0.75rem;
    font-size: clamp(20px, 2.4vw, 26px);
    color: #212529;
}

.co-id-body {
    margin: 0 0 1.25rem;
    color: #6C757D;
}

.co-id-foot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #6B8E23;
}

.co-id-foot::before {
    content: "";
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, currentColor);
}

.co-faq--color {
    padding: 64px 20px;
    background: #212529;
    color: #FFFFFF;
}

.co-faq-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-faq-head {
    text-align: center;
    margin-bottom: 24px;
}

.co-faq-head h2 {
    margin: 0 0 6px;
    font-size: clamp(24px, 4vw, 32px);
    color: #FFFFFF;
}

.co-faq-head p {
    margin: 0;
    color: #E9ECEF;
}

.co-faq-list {
    display: grid;
    gap: 10px;
}

.co-faq-item {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.co-faq-item--accent {
    border-color: #6B8E23;
}

.co-faq-item--accent {
    border-color: #6B8E23;
}

.co-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

.co-faq-item p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.9);
}

.co-clar {

    padding: clamp(18px, 3vw, 44px);
    background: #6B8E23;
    color: #FFFFFF;
}

.co-clar-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-clar-head {
    margin-bottom: clamp(14px, 2.2vw, 22px);
}

.co-clar-title {
    margin: 0;
    font-size: clamp(24px, 4.4vw, 42px);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.co-clar-sub {
    margin: 10px 0 0;
    max-width: 70ch;
    color: rgba(255, 255, 255, .82);
}

.co-clar-rail {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Световой “луч” двигается постоянно */
.co-clar-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 48%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: translateX(-120%);
    animation: c2Beam 6.2s linear infinite;
    pointer-events: none;
}

@keyframes c2Beam {
    0% {
        transform: translateX(-120%)
    }
    55% {
        transform: translateX(160%)
    }
    100% {
        transform: translateX(160%)
    }
}

.co-clar-list {
    display: grid;
    gap: 10px;
    padding: 12px;
}

.co-clar-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.co-clar-row.co-hot {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}

.co-clar-tag {
    align-self: start;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 800;
    white-space: nowrap;
    color: rgba(255, 255, 255, .92);
}

.co-clar-q {
    font-weight: 900;
    letter-spacing: -.01em;
    margin-bottom: 6px;
}

.co-clar-a {
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

@media (max-width: 720px) {
    .co-clar-row {
        grid-template-columns:1fr
    }

    .co-clar-tag {
        justify-self: start
    }
}

@media (prefers-reduced-motion: reduce) {
    .co-clar-beam {
        animation: none;
    }
}

.co-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.co-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #6B8E23;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.co-logo:hover {
    color: #5A7A1D;
}

.co-nav {
    display: flex;
}

.co-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.co-nav-link {
    color: #6B8E23;
    text-decoration: none;
    padding: calc(20px / 2) 24px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.co-nav-link:hover,
.co-nav-link:focus-visible {
    color: #5A7A1D;
    background-color: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(107, 142, 35, 0.4);
    outline-offset: 2px;
}

.co-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
}

.co-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.co-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.co-burger-ico::before,
.co-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.co-burger-ico::before {
    top: -8px;
}

.co-burger-ico::after {
    bottom: -8px;
}

.co-burger[aria-expanded="true"] .co-burger-ico {
    background-color: transparent;
}

.co-burger[aria-expanded="true"] .co-burger-ico::before {
    transform: translateY(8px) rotate(45deg);
}

.co-burger[aria-expanded="true"] .co-burger-ico::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .co-burger {
        display: block;
    }

    .co-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 100vw);
        background-color: #FFFFFF;
        border-left: 1px solid #E9ECEF;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: calc(20px * 2) 24px;
        z-index: 101;
        overflow-y: auto;
    }

    .co-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .co-nav-list {
        flex-direction: column;
        gap: calc(16px / 2);
        margin-top: calc(20px * 2);
    }

    .co-nav-link {
        display: block;
        padding: 20px 24px;
    }

    .co-head-in {
        position: relative;
    }
}

.co-foot {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.co-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.co-foot-sec {
    display: flex;
    flex-direction: column;
}

.co-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.co-foot-note {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    max-width: 300px;
}

.co-foot-copy {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: auto;
}

.co-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.co-foot-nav,
.co-foot-social,
.co-foot-legal,
.co-foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-foot-nav li,
.co-foot-social li,
.co-foot-legal li {
    margin-bottom: 0.6rem;
}

.co-foot-contact p {
    margin: 0 0 0.6rem 0;
}

.co-foot a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.co-foot a:hover {
    color: #007bff;
    text-decoration: underline;
}

.co-foot-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.co-foot-legal li {
    display: inline-block;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .co-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .co-foot-sec {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 2rem;
    }

    .co-foot-sec:last-child {
        border-bottom: none;
    }

    .co-foot-legal li {
        display: block;
        margin-right: 0;
    }
}


.co-why {

    padding: clamp(16px, 3vw, 44px);
}

.co-why--color.co-why--v2 {
    background: #6B8E23;
    color: #FFFFFF;
}

.co-why-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-why-top {
    display: grid;
    grid-template-columns:1.35fr 0.65fr;
    gap: clamp(14px, 2vw, 20px);
    align-items: start;
    margin-bottom: clamp(14px, 2.4vw, 26px);
}

.co-why-title {
    margin: 0;
    font-size: clamp(26px, 4.6vw, 42px);
    line-height: 1.1;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.co-why-sub {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.8);
    max-width: 68ch;
}

.co-why-stats {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.co-why-val {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 700;
    color: #FFFFFF;
}

.co-why-label {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.co-why-list {
    display: grid;
    gap: 12px;
}

.co-why-row {
    position: relative;
    display: grid;
    grid-template-columns:18px 1fr;
    gap: 12px;
    padding: clamp(14px, 2vw, 18px);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.co-why-row:hover {
    transform: translateY(-3px);
}

/* SHIMMER SWEEP */
.co-why-row::after {
    content: '';
    position: absolute;
    inset: -40px -60px;
    transform: translateX(-120%) rotate(12deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

    pointer-events: none;
}

.co-why-row:hover::after {
    opacity: 1;
    animation: whyChooseShimmer 900ms ease-in-out 1;
}

@keyframes whyChooseShimmer {
    0% {
        transform: translateX(-120%) rotate(12deg);
    }
    100% {
        transform: translateX(120%) rotate(12deg);
    }
}

.co-why-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-top: 6px;
    background: #6B8E23;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
}

.co-why-row-title {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.co-why-row-text {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

@media (max-width: 920px) {
    .co-why-top {
        grid-template-columns:1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .co-why-row {
        transition: none;
    }

    .co-why-row::after {
        display: none;
    }
}

.co-feed {
    background: #F8F9FA;
    color: #343A40;
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
}

.co-feed-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-feed-head {
    text-align: center;
    margin-bottom: clamp(22px, 5vw, 44px);

    transform: translateY(-18px);
}

.co-feed-eye {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 12px;
    color: #6C757D;
}

.co-feed-head h2 {
    margin: 0;
    font-size: clamp(26px, 4.4vw, 44px);
    letter-spacing: -0.02em;
    color: #212529;
}

.co-feed-list {
    display: grid;
    gap: 12px;
}

.co-feed-row {
    border: 1px solid #E9ECEF;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;

    transform: translateY(24px);
}

.co-feed-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    padding: 14px 16px;
    border: 0;
    background: transparent;
    color: #212529;
    font: inherit;
    text-align: left;
}

.co-feed-who {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.co-feed-avatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(107, 142, 35, 0.1);
    border: 1px solid #E9ECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.co-feed-name {
    font-weight: 800;
    font-size: 14px;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 18ch;
}

.co-feed-meta {
    font-size: 12px;
    color: #6C757D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 24ch;
}

.co-feed-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
}

.co-feed-stars {
    color: #6B8E23;
    letter-spacing: 0.08em;
    font-size: 13px;
    line-height: 1;
}

.co-feed-score {
    font-weight: 800;
    font-size: 12px;
    color: #212529;
}

.co-feed-a {
    padding: 0 16px 14px;
    color: #343A40;
    overflow: hidden;
}

.co-feed-a p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #212529;
}

.co-feed-chip {
    display: inline-flex;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #6B8E23;
    border: 1px solid rgba(107, 142, 35, 0.4);
    color: #FFFFFF;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 10px;
}

@media (max-width: 560px) {
    .co-feed-q {
        align-items: flex-start;
    }

    .co-feed-rating {
        margin-top: 2px;
    }

    .co-feed-meta {
        display: none;
    }
}

.co-cap {
    background: #6B8E23;
    color: #FFFFFF;
    padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
    position: relative;
    overflow: hidden;
}

.co-cap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #6B8E23 0%, transparent 100%);
    opacity: 0.1;
}

.co-cap .co-cap-in {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.co-cap .co-cap-head {
    text-align: center;
    margin-bottom: clamp(48px, 7vw, 80px);
}

.co-cap h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin: 0 0 1rem;
}

.co-cap .co-cap-sub {
    font-size: clamp(16px, 2vw, 20px);
    margin: 0;
    opacity: 0.9;
}

.co-cap .co-cap-flow {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 64px);
    position: relative;
}

.co-cap .co-cap-item {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    transform: translateX(-50px);
}

.co-cap .co-cap-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.co-cap .co-cap-conn {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #6B8E23;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 8px rgba(107, 142, 35, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(107, 142, 35, 0.2);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(107, 142, 35, 0.1);
    }
}

.co-cap .co-cap-conn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 50%;
}

.co-cap .co-cap-bubble {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(24px, 3vw, 36px);
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
}

.co-cap .co-cap-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) rotate(45deg);
}

.co-cap .co-cap-item:nth-child(odd) .co-cap-bubble::before {
    left: -10px;
}

.co-cap .co-cap-item:nth-child(even) .co-cap-bubble::before {
    right: -10px;
}

.co-cap .co-cap-icon {
    color: #212529;
    font-size: 36px;
    margin-bottom: 1rem;
}

.co-cap .co-cap-bubble h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #6B8E23;
}

.co-cap .co-cap-bubble p {
    margin: 0;
    color: #6C757D;
    line-height: 1.6;
}

.co-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.co-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #6B8E23;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.co-logo:hover {
    color: #5A7A1D;
}

.co-nav {
    display: flex;
}

.co-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.co-nav-link {
    color: #6B8E23;
    text-decoration: none;
    padding: calc(20px / 2) 24px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.co-nav-link:hover,
.co-nav-link:focus-visible {
    color: #5A7A1D;
    background-color: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(107, 142, 35, 0.4);
    outline-offset: 2px;
}

.co-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
}

.co-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.co-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.co-burger-ico::before,
.co-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.co-burger-ico::before {
    top: -8px;
}

.co-burger-ico::after {
    bottom: -8px;
}

.co-burger[aria-expanded="true"] .co-burger-ico {
    background-color: transparent;
}

.co-burger[aria-expanded="true"] .co-burger-ico::before {
    transform: translateY(8px) rotate(45deg);
}

.co-burger[aria-expanded="true"] .co-burger-ico::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .co-burger {
        display: block;
    }

    .co-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 100vw);
        background-color: #FFFFFF;
        border-left: 1px solid #E9ECEF;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: calc(20px * 2) 24px;
        z-index: 101;
        overflow-y: auto;
    }

    .co-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .co-nav-list {
        flex-direction: column;
        gap: calc(16px / 2);
        margin-top: calc(20px * 2);
    }

    .co-nav-link {
        display: block;
        padding: 20px 24px;
    }

    .co-head-in {
        position: relative;
    }
}

.co-foot {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.co-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.co-foot-sec {
    display: flex;
    flex-direction: column;
}

.co-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.co-foot-note {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    max-width: 300px;
}

.co-foot-copy {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: auto;
}

.co-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.co-foot-nav,
.co-foot-social,
.co-foot-legal,
.co-foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-foot-nav li,
.co-foot-social li,
.co-foot-legal li {
    margin-bottom: 0.6rem;
}

.co-foot-contact p {
    margin: 0 0 0.6rem 0;
}

.co-foot a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.co-foot a:hover {
    color: #007bff;
    text-decoration: underline;
}

.co-foot-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.co-foot-legal li {
    display: inline-block;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .co-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .co-foot-sec {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 2rem;
    }

    .co-foot-sec:last-child {
        border-bottom: none;
    }

    .co-foot-legal li {
        display: block;
        margin-right: 0;
    }
}


.co-form-section {

    background: #fff;
    color: #212529;
    padding: clamp(16px, 3vw, 40px);
}

.co-form-section .co-form-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.co-form-section h2 {
    color: black
}

.co-form-section .co-form-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.co-form-section .co-form {
    display: grid;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid rgba(107, 142, 35, 0.4);
    border-radius: 16px;
    padding: clamp(12px, 2vw, 20px);
}

.co-form-section .co-form label:not(.co-agree) {
    display: grid;
    gap: 6px;
}

.co-form-section .co-form input {
    padding: .8rem 1rem;
    border: 1px solid rgba(107, 142, 35, 0.4);
    border-radius: 12px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.co-form-section .co-agree {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #6C757D;
}

.co-form-section .co-form-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .5rem;

    color: #212529
}

.co-form-submit {
    padding: 1rem;
    background: #6B8E23;
    color: #212529;
    border-radius: 8px;
    border: 1px solid rgba(107, 142, 35, 0.1)
}

@media (max-width: 767px) {
    .co-form-section .co-form-grid {
        grid-template-columns: 1fr;
    }
}

.co-faq--color {
    padding: 64px 20px;
    background: #212529;
    color: #FFFFFF;
}

.co-faq-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-faq-head {
    text-align: center;
    margin-bottom: 24px;
}

.co-faq-head h2 {
    margin: 0 0 6px;
    font-size: clamp(24px, 4vw, 32px);
    color: #FFFFFF;
}

.co-faq-head p {
    margin: 0;
    color: #E9ECEF;
}

.co-faq-list {
    display: grid;
    gap: 10px;
}

.co-faq-item {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.co-faq-item--accent {
    border-color: #6B8E23;
}

.co-faq-item--accent {
    border-color: #6B8E23;
}

.co-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

.co-faq-item p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.9);
}

.co-polcon--light {
    padding: 56px 20px;
    background: radial-gradient(120% 120% at 0% 0%, rgba(253, 186, 116, 0.2), transparent 50%),
    radial-gradient(120% 120% at 100% 20%, rgba(134, 239, 172, 0.2), transparent 50%),
    #fff;
    color: #212529;

}

.co-polcon-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-polcon-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 20px;
    align-items: start;
}

.co-polcon-list {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(107, 142, 35, 0.4);
    padding: 16px;
    display: grid;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.co-polcon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
}

.co-polcon-item span {
    font-size: 0.9rem;
    color: #6C757D;
}

.co-polcon-item strong {
    font-weight: 600;
}

.co-polcon-form {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(107, 142, 35, 0.4);
    padding: 18px;
    display: grid;
    gap: 12px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.co-polcon-form label {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: #6C757D;
}

.co-polcon-form input[type="email"] {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 35, 0.4);
    background: #fff;
    font-family: inherit;
}

.co-polcon-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6C757D;
}

.co-polcon-form button {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 0;
    background: #6B8E23;
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.15);
    transition: transform 0.3s ease-in-out;
}

.co-polcon-form button:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .co-polcon-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

.co-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.co-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #6B8E23;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.co-logo:hover {
    color: #5A7A1D;
}

.co-nav {
    display: flex;
}

.co-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.co-nav-link {
    color: #6B8E23;
    text-decoration: none;
    padding: calc(20px / 2) 24px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.co-nav-link:hover,
.co-nav-link:focus-visible {
    color: #5A7A1D;
    background-color: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(107, 142, 35, 0.4);
    outline-offset: 2px;
}

.co-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
}

.co-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.co-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.co-burger-ico::before,
.co-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.co-burger-ico::before {
    top: -8px;
}

.co-burger-ico::after {
    bottom: -8px;
}

.co-burger[aria-expanded="true"] .co-burger-ico {
    background-color: transparent;
}

.co-burger[aria-expanded="true"] .co-burger-ico::before {
    transform: translateY(8px) rotate(45deg);
}

.co-burger[aria-expanded="true"] .co-burger-ico::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .co-burger {
        display: block;
    }

    .co-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 100vw);
        background-color: #FFFFFF;
        border-left: 1px solid #E9ECEF;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: calc(20px * 2) 24px;
        z-index: 101;
        overflow-y: auto;
    }

    .co-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .co-nav-list {
        flex-direction: column;
        gap: calc(16px / 2);
        margin-top: calc(20px * 2);
    }

    .co-nav-link {
        display: block;
        padding: 20px 24px;
    }

    .co-head-in {
        position: relative;
    }
}

.co-foot {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.co-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.co-foot-sec {
    display: flex;
    flex-direction: column;
}

.co-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.co-foot-note {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    max-width: 300px;
}

.co-foot-copy {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: auto;
}

.co-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.co-foot-nav,
.co-foot-social,
.co-foot-legal,
.co-foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-foot-nav li,
.co-foot-social li,
.co-foot-legal li {
    margin-bottom: 0.6rem;
}

.co-foot-contact p {
    margin: 0 0 0.6rem 0;
}

.co-foot a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.co-foot a:hover {
    color: #007bff;
    text-decoration: underline;
}

.co-foot-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.co-foot-legal li {
    display: inline-block;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .co-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .co-foot-sec {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 2rem;
    }

    .co-foot-sec:last-child {
        border-bottom: none;
    }

    .co-foot-legal li {
        display: block;
        margin-right: 0;
    }
}


.co-policy {

    background: #fff;
    color: #212529;
    padding: clamp(16px, 3vw, 40px);
}

.co-policy-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-policy h1 {
    margin: 0 0 2.5rem;
    font-size: clamp(28px, 5vw, 48px);
    color: black;
    text-align: center;
}

.co-policy-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.co-policy-card {
    padding: 1.75rem;
    background: #FFFFFF;
    border: 1px solid rgba(107, 142, 35, 0.4);
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-policy-card h3 {
    margin: 0 0 1rem;
    font-size: clamp(18px, 2.5vw, 22px);
    color: #212529;
}

.co-policy-text {
    font-size: .95rem;
    color: #6C757D;
    line-height: 1.7;
}

@media (max-width: 1023px) {
    .co-policy-grid {
        grid-template-columns: 1fr;
    }
}

.co-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.co-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #6B8E23;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.co-logo:hover {
    color: #5A7A1D;
}

.co-nav {
    display: flex;
}

.co-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.co-nav-link {
    color: #6B8E23;
    text-decoration: none;
    padding: calc(20px / 2) 24px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.co-nav-link:hover,
.co-nav-link:focus-visible {
    color: #5A7A1D;
    background-color: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(107, 142, 35, 0.4);
    outline-offset: 2px;
}

.co-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
}

.co-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.co-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.co-burger-ico::before,
.co-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.co-burger-ico::before {
    top: -8px;
}

.co-burger-ico::after {
    bottom: -8px;
}

.co-burger[aria-expanded="true"] .co-burger-ico {
    background-color: transparent;
}

.co-burger[aria-expanded="true"] .co-burger-ico::before {
    transform: translateY(8px) rotate(45deg);
}

.co-burger[aria-expanded="true"] .co-burger-ico::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .co-burger {
        display: block;
    }

    .co-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 100vw);
        background-color: #FFFFFF;
        border-left: 1px solid #E9ECEF;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: calc(20px * 2) 24px;
        z-index: 101;
        overflow-y: auto;
    }

    .co-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .co-nav-list {
        flex-direction: column;
        gap: calc(16px / 2);
        margin-top: calc(20px * 2);
    }

    .co-nav-link {
        display: block;
        padding: 20px 24px;
    }

    .co-head-in {
        position: relative;
    }
}

.co-foot {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.co-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.co-foot-sec {
    display: flex;
    flex-direction: column;
}

.co-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.co-foot-note {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    max-width: 300px;
}

.co-foot-copy {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: auto;
}

.co-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.co-foot-nav,
.co-foot-social,
.co-foot-legal,
.co-foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-foot-nav li,
.co-foot-social li,
.co-foot-legal li {
    margin-bottom: 0.6rem;
}

.co-foot-contact p {
    margin: 0 0 0.6rem 0;
}

.co-foot a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.co-foot a:hover {
    color: #007bff;
    text-decoration: underline;
}

.co-foot-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.co-foot-legal li {
    display: inline-block;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .co-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .co-foot-sec {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 2rem;
    }

    .co-foot-sec:last-child {
        border-bottom: none;
    }

    .co-foot-legal li {
        display: block;
        margin-right: 0;
    }
}


.co-terms {

    background: #FFFFFF;
    color: #212529;
    padding: clamp(16px, 3vw, 40px);
}

.co-terms-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-terms h1 {
    margin: 0 0 2.5rem;
    font-size: clamp(28px, 5vw, 48px);
    color: #212529;
    text-align: center;
}

.co-terms-wrap {
    display: grid;
    gap: 1.25rem;
}

.co-terms-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
    background: #6B8E23;
    color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    align-items: start;
}

.co-terms-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.co-terms-body h3 {
    margin: 0 0 .75rem;
    font-size: clamp(20px, 3vw, 24px);
    color: #FFFFFF;
}

.co-terms-body p {
    margin: 0;
    font-size: 1rem;
    color: #FFFFFF;
    opacity: .95;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .co-terms-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
}

.co-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.co-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #6B8E23;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.co-logo:hover {
    color: #5A7A1D;
}

.co-nav {
    display: flex;
}

.co-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.co-nav-link {
    color: #6B8E23;
    text-decoration: none;
    padding: calc(20px / 2) 24px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.co-nav-link:hover,
.co-nav-link:focus-visible {
    color: #5A7A1D;
    background-color: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(107, 142, 35, 0.4);
    outline-offset: 2px;
}

.co-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
}

.co-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.co-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.co-burger-ico::before,
.co-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.co-burger-ico::before {
    top: -8px;
}

.co-burger-ico::after {
    bottom: -8px;
}

.co-burger[aria-expanded="true"] .co-burger-ico {
    background-color: transparent;
}

.co-burger[aria-expanded="true"] .co-burger-ico::before {
    transform: translateY(8px) rotate(45deg);
}

.co-burger[aria-expanded="true"] .co-burger-ico::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .co-burger {
        display: block;
    }

    .co-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 100vw);
        background-color: #FFFFFF;
        border-left: 1px solid #E9ECEF;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: calc(20px * 2) 24px;
        z-index: 101;
        overflow-y: auto;
    }

    .co-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .co-nav-list {
        flex-direction: column;
        gap: calc(16px / 2);
        margin-top: calc(20px * 2);
    }

    .co-nav-link {
        display: block;
        padding: 20px 24px;
    }

    .co-head-in {
        position: relative;
    }
}

.co-foot {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.co-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.co-foot-sec {
    display: flex;
    flex-direction: column;
}

.co-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.co-foot-note {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    max-width: 300px;
}

.co-foot-copy {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: auto;
}

.co-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.co-foot-nav,
.co-foot-social,
.co-foot-legal,
.co-foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-foot-nav li,
.co-foot-social li,
.co-foot-legal li {
    margin-bottom: 0.6rem;
}

.co-foot-contact p {
    margin: 0 0 0.6rem 0;
}

.co-foot a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.co-foot a:hover {
    color: #007bff;
    text-decoration: underline;
}

.co-foot-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.co-foot-legal li {
    display: inline-block;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .co-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .co-foot-sec {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 2rem;
    }

    .co-foot-sec:last-child {
        border-bottom: none;
    }

    .co-foot-legal li {
        display: block;
        margin-right: 0;
    }
}


.co-thanks {

    background: #FFFFFF;
    color: #212529;
    padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
}

.co-thanks-in {
    max-width: 1200px;
    margin: 0 auto;
}

.co-thanks-card {
    background: rgba(255, 255, 255, 0.9);
    color: #212529;
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(233, 236, 239, 0.8);
}

.co-thanks-mark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 142, 35, 0.1);
    color: #6B8E23;
    font-size: 1.6rem;
}

.co-thanks h1 {
    font-size: clamp(26px, 4.5vw, 38px);
    margin: 0 0 0.75rem;
}

.co-thanks p {
    margin: 0 0 0.75rem;
    opacity: 0.9;
}

.co-thanks-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.co-thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.co-thanks-btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.85rem 1.3rem;
    border-radius: 16px;
    font-weight: 500;
    transition: background 0.3s ease-in-out,
    color 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.co-thanks-btn--main {
    background: #6B8E23;
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-thanks-btn--main:hover {
    background: #5A7A1D;
    transform: translateY(-2px);
}

.co-thanks-btn--ghost {
    background: transparent;
    color: #212529;
    border: 1px solid #E9ECEF;
}

.co-thanks-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .co-thanks-card {
        padding: 20px;
    }

    .co-thanks-actions {
        flex-direction: column;
    }

    .co-thanks-btn {
        width: 100%;
        text-align: center;
    }
}

.co-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.co-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.co-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #6B8E23;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.co-logo:hover {
    color: #5A7A1D;
}

.co-nav {
    display: flex;
}

.co-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.co-nav-link {
    color: #6B8E23;
    text-decoration: none;
    padding: calc(20px / 2) 24px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.co-nav-link:hover,
.co-nav-link:focus-visible {
    color: #5A7A1D;
    background-color: rgba(255, 255, 255, 0.06);
    outline: 2px solid rgba(107, 142, 35, 0.4);
    outline-offset: 2px;
}

.co-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
}

.co-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.co-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.co-burger-ico::before,
.co-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.co-burger-ico::before {
    top: -8px;
}

.co-burger-ico::after {
    bottom: -8px;
}

.co-burger[aria-expanded="true"] .co-burger-ico {
    background-color: transparent;
}

.co-burger[aria-expanded="true"] .co-burger-ico::before {
    transform: translateY(8px) rotate(45deg);
}

.co-burger[aria-expanded="true"] .co-burger-ico::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
    .co-burger {
        display: block;
    }

    .co-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 100vw);
        background-color: #FFFFFF;
        border-left: 1px solid #E9ECEF;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: calc(20px * 2) 24px;
        z-index: 101;
        overflow-y: auto;
    }

    .co-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .co-nav-list {
        flex-direction: column;
        gap: calc(16px / 2);
        margin-top: calc(20px * 2);
    }

    .co-nav-link {
        display: block;
        padding: 20px 24px;
    }

    .co-head-in {
        position: relative;
    }
}

.co-foot {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.co-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.co-foot-sec {
    display: flex;
    flex-direction: column;
}

.co-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.co-foot-note {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    max-width: 300px;
}

.co-foot-copy {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: auto;
}

.co-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.co-foot-nav,
.co-foot-social,
.co-foot-legal,
.co-foot-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-foot-nav li,
.co-foot-social li,
.co-foot-legal li {
    margin-bottom: 0.6rem;
}

.co-foot-contact p {
    margin: 0 0 0.6rem 0;
}

.co-foot a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.co-foot a:hover {
    color: #007bff;
    text-decoration: underline;
}

.co-foot-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.co-foot-legal li {
    display: inline-block;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .co-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .co-foot-sec {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 2rem;
    }

    .co-foot-sec:last-child {
        border-bottom: none;
    }

    .co-foot-legal li {
        display: block;
        margin-right: 0;
    }
}


.co-404--light {
    padding: 72px 20px;
    background: #FFFFFF;
    color: #212529;
}

.co-404-in {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.co-404-code {
    font-size: clamp(56px, 16vw, 96px);
    font-weight: 700;
    color: #343A40;
    line-height: 1;
    margin-bottom: 20px;
}

.co-404-text {
    margin-top: 10px;
    color: #6C757D;
    font-size: 1.125rem;
    margin-bottom: calc(20px * 1.5);
}

.co-404-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: calc(20px * 1.5);
}

.co-404-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #6B8E23;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: background-color 0.3s ease-in-out;
}

.co-404-btn:hover {
    background: #5A7A1D;
}

.co-404-search {
    display: flex;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid #E9ECEF;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
}

.co-404-input {
    flex-grow: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #212529;
    font-family: inherit;
    font-size: inherit;
}

.co-404-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.co-404-search-btn {
    padding: 0 20px;
    border: none;
    background: #F8F9FA;
    color: #343A40;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease-in-out;
}

.co-404-search-btn:hover {
    background: #E9ECEF;
}

.co-404-links {
    color: #6C757D;
    border-top: 1px solid #E9ECEF;
    padding-top: calc(20px * 1.5);
}

.co-404-links p {
    margin-bottom: 16px;
}

.co-404-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(16px * 1.5);
}

.co-404-links a {
    color: #6B8E23;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.co-404-links a:hover {
    color: #5A7A1D;
    text-decoration: underline;
}
.co-cookie--color {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    border-radius: 1rem;
    z-index: 1000;
    padding: 32px 20px;
    background: #212529;
    color: #FFFFFF;
}

.co-cookie-in {
    max-width: 720px;
    margin: 0 auto;
}

.co-cookie-title {
    margin: 0 0 16px;
    font-size: clamp(22px, 3.5vw, 28px);
    color: #FFFFFF;
}

.co-cookie-text {
    margin: 0 0 12px;
    color: #E9ECEF;
    font-size: 0.95rem;
}

.co-cookie-list {
    margin: 0 0 10px;
    padding-left: 1.1rem;
    display: grid;
    gap: 6px;
}

.co-cookie-item {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.9);
}

.co-cookie-note {
    margin: 0;
    font-size: 0.85rem;
    color: #6B8E23;
}

.co-cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.co-cookie-btn {
    padding: 0.75rem 1.3rem;
    border: 2px solid #6B8E23;
    border-radius: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all .25s;
    font-weight: 500;
}

.co-cookie-accept {
    background: #FFFFFF;
    color: #6B8E23;
    border-color: #FFFFFF;
}

.co-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.co-cookie-reject {
    background: transparent;
    color: #6B8E23;
    border-color: #6B8E23;
}

.co-cookie-reject:hover {
    background: rgba(255, 255, 255, .1);
}

@media (max-width: 767px) {
    .co-cookie-wrap {
        flex-wrap: wrap;
    }

    .co-cookie-icon {
        font-size: 2rem;
    }

    .co-cookie-actions {
        width: 100%;
    }

    .co-cookie-btn {
        flex: 1;
    }
}