:root {
    --brand-green: #42b80e;
    --brand-dark: #292a2e;
    --brand-green-light: #e8f8e0;
    --brand-green-mid: #d0f0bb;
    --nav-height: 64px;
    --max-width: 1400px;
    --font-body: "DM Sans", sans-serif;
    --font-body-alt: "DM Sans", sans-serif;
    --font-heading: "DM Sans", sans-serif;
    --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.05);
    --shadow-dropdown:
        0 8px 40px rgba(41, 42, 46, 0.13), 0 2px 8px rgba(41, 42, 46, 0.07);
    --radius-dropdown: 14px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    
    --card-w: 300px;
    --card-gap: 16px;
    --card-radius: 22px;
    --card-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;

    --foot-border: #e8e9eb;
    --foot-muted: #8a8d96;
    --foot-link: #3a3b40;
    --foot-link-hover: var(--brand-green);
}

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

body {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Google Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Lexend", sans-serif;
}

.title-highlight {
    color: var(--brand);
}

.pol-hero {
    max-width: var(--max-width);
    margin: 20px auto 0;
    padding: 100px 24px 24px;
    position: relative;
    overflow: hidden;
}

.pol-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pol-hero-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--brand-dark);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 16px;
}

.pol-hero-meta {
    font-family: var(--font-body);
    font-size: 13px;
    color: #5a5d6e;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pol-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pol-hero-meta-item i {
    font-size: 13px;
    color: #8a8d96;
}

.pol-body {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px 24px 96px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
}

.pol-sidebar {
    position: sticky;
    top: 32px;
}

.pol-sidebar-label {
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a8d96;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e9eb;
}

.pol-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pol-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 400;
    color: #5a5d6e;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: color 0.18s, background 0.18s, border-color 0.18s;
    line-height: 1.35;
}

.pol-sidebar-link:hover {
    color: var(--brand-green);
    background: var(--brand-green-light);
}

.pol-sidebar-link.pol-active {
    color: var(--brand-green);
    background: var(--brand-green-light);
    font-weight: 500;
}

.pol-sidebar-section-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8d96;
    padding: 14px 12px 4px;
}

.pol-content {
    min-width: 0;
}

.pol-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #e8e9eb;
}

.pol-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pol-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pol-section-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--brand-green-light);
    border: 1px solid rgba(66, 184, 14, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--brand-green);
    margin-top: 3px;
}

.pol-section-title {
    font-size: clamp(16px, 2vw, 21px);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--brand-dark);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.pol-section-sub {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--brand-dark);
    margin: 20px 0 8px;
}

.pol-section p {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 300;
    color: #5a5d6e;
    line-height: 1.8;
    margin-bottom: 14px;
}

.pol-section p:last-child {
    margin-bottom: 0;
}

.pol-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0;
}

.pol-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 300;
    color: #5a5d6e;
    line-height: 1.72;
}

.pol-section ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-green);
    flex-shrink: 0;
    margin-top: 8px;
}

.pol-intro {
    background: #f8f9fa;
    border: 1px solid #e8e9eb;
    border-left: 3px solid var(--brand-green);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-bottom: 48px;
}

.pol-intro p {
    font-family: var(--font-body);
    font-size: 13px;
    color: #5a5d6e;
    line-height: 1.75;
    margin: 0;
}

.pol-part {
    margin: 10px 0 40px;
}

.pol-part-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-green);
    border-radius: 100px;
    margin-bottom: 8px;
}

.pol-part-title {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--brand-dark);
    letter-spacing: -0.02em;
}

.pol-toc-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 1px solid #e8e9eb;
    border-radius: 10px;
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-dark);
    cursor: pointer;
    margin-bottom: 32px;
}

.pol-toc-toggle i {
    font-size: 16px;
    color: #8a8d96;
    transition: transform 0.25s;
}

.pol-toc-toggle.pol-open i {
    transform: rotate(180deg);
}

.pol-mobile-toc {
    display: none;
    background: #f8f9fa;
    border: 1px solid #e8e9eb;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 32px;
    flex-direction: column;
    gap: 2px;
}

.pol-mobile-toc.pol-open {
    display: flex;
}

.pol-mobile-toc a {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #5a5d6e;
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 7px;
    transition: color 0.18s, background 0.18s;
}

.pol-mobile-toc a:hover {
    color: var(--brand-green);
    background: var(--brand-green-light);
}

.pol-contact-mail {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 500;
}

.pol-contact-mail:hover {
    text-decoration: underline;
}

@media (max-width: 960px) {
    .pol-body {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 20px;
    }

    .pol-sidebar {
        display: none;
    }

    .pol-toc-toggle {
        display: flex;
    }
}

@media (max-width: 560px) {
    .pol-hero {
        padding: 56px 20px 48px;
    }

    .pol-body {
        padding: 32px 20px 64px;
    }

    .pol-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .pol-section-num {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}
.cta-outer {
    max-width: var(--max-width);
    margin: 50px auto 0;
    padding: 0 2rem 6rem;
}

.cta-card {
    position: relative;
    background: #000;
    border-radius: 28px;
    height: 240px;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 0 3.5rem 0 calc(340px + 3rem);
}

.cta-person {
    position: absolute;
    left: 2.8rem;
    bottom: 0;
    height: calc(100% + 3.5rem);
    width: 280px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 0.68, 0, 1.1),
        transform 0.7s cubic-bezier(0.22, 0.68, 0, 1.1);
}
.cta-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px 16px 0 0;
    display: block;
}
.cta-person.cta-visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 0.68, 0, 1.1) 0.2s,
        transform 0.65s cubic-bezier(0.22, 0.68, 0, 1.1) 0.2s;
}
.cta-body.cta-visible {
    opacity: 1;
    transform: translateX(0);
}

.cta-desc {
    font-family: var(--font-body-alt);
    font-size: 0.83rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 360px;
}

.cta-action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    font-family: var(--font-body-alt);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--transition);
}
.cta-action i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition:
        border-color var(--transition),
        background var(--transition),
        color var(--transition);
}
.cta-action:hover {
    color: #fff;
}
.cta-action:hover i {
    border-color: var(--brand-green);
    background: var(--brand-green);
    color: #fff;
}

/* ── MOBILE ── */
@media (max-width: 860px) {
    .cta-card {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        border-radius: 22px;
        overflow: hidden;
    }

    .cta-person {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        height: 260px;
        transform: translateY(-20px);
        border-radius: 0;
    }
    .cta-person img {
        border-radius: 0;
        object-position: top center;
    }
    .cta-person.cta-visible {
        transform: translateY(0);
    }

    .cta-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
        padding: 1.8rem 2rem 2.2rem;
        transform: translateX(0);
        opacity: 0;
    }
    .cta-desc {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-outer {
        padding: 0 1rem 4rem;
    }
    .cta-person {
        height: 220px;
    }
    .cta-body {
        padding: 1.5rem 1.5rem 2rem;
    }
}

