.hp-light {
    background: #f8faf8;
    color: #1a2e1a;
}

.hp-light .hp-title,
.hp-light .hp-step-title,
.hp-light .hp-value-title,
.hp-light .hp-faq-q {
    color: #0f1f0f;
}

.hp-light .hp-sub,
.hp-light .hp-step-desc,
.hp-light .hp-value-desc {
    color: #5a7a5a;
}

.hp-stats {
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, .06);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: #f0faf3;
}

.hp-stat {
    flex: 1;
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, .06);
}

.hp-stat:last-child {
    border-right: none;
}

.hp-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #052e16;
    line-height: 1;
}

.hp-stat-num sup {
    font-size: 16px;
    color: #16a34a;
    vertical-align: super;
}

.hp-stat-label {
    font-size: 12px;
    color: #6b9e7a;
    margin-top: 6px;
    letter-spacing: .04em;
}

.hp-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 88px 32px;
}

.hp-section-wrap {
    padding: 0;
}

.hp-section-wrap .hp-section {
    padding: 88px 32px;
}

.hp-eyebrow {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #16a34a;
    margin-bottom: 12px;
    font-weight: 500;
}

.hp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.hp-title.dark {
    color: #0f1f0f;
}

.hp-title em {
    font-style: italic;
    color: #a7f3d0;
}

.hp-title.dark em {
    color: #16a34a;
}

.hp-sub {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .38);
    margin-top: 12px;
    line-height: 1.75;
    max-width: 520px;
}

.hp-sub.dark {
    color: #5a7a5a;
}

.hp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 56px;
    background: rgba(0, 0, 0, .06);
    border-radius: 16px;
    overflow: hidden;
}

.hp-step {
    padding: 36px 32px;
    background: #fff;
    transition: background .2s;
}

.hp-step:hover {
    background: #f0faf3;
}

.hp-step-n {
    font-size: 11px;
    letter-spacing: .14em;
    color: #86c89a;
    margin-bottom: 18px;
    font-weight: 600;
}

.hp-step-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f1f0f;
    margin-bottom: 8px;
}

.hp-step-desc {
    font-size: 13.5px;
    color: #6b8a6b;
    line-height: 1.75;
}

.hp-faq {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(0, 0, 0, .06);
    border-radius: 16px;
    overflow: hidden;
}

.hp-faq-item {
    background: #fff;
    padding: 0;
    cursor: pointer;
}

.hp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    font-size: 14.5px;
    font-weight: 600;
    color: #0f1f0f;
    gap: 16px;
    user-select: none;
}

.hp-faq-q svg {
    flex-shrink: 0;
    color: #16a34a;
    transition: transform .25s;
}

.hp-faq-item.open .hp-faq-q svg {
    transform: rotate(45deg);
}

.hp-faq-a {
    display: none;
    padding: 0 28px 20px;
    font-size: 13.5px;
    color: #5a7a5a;
    line-height: 1.75;
}

.hp-faq-item.open .hp-faq-a {
    display: block;
}

.hp-app {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hp-app-text {
    flex: 1;
}

.hp-app-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-app-soon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 12px;
    background: #fff;
    font-size: 13px;
    color: #0f1f0f;
    font-weight: 500;
    min-width: 200px;
}

.hp-app-soon svg {
    color: #16a34a;
    flex-shrink: 0;
}

.hp-app-soon-sub {
    font-size: 11px;
    color: #9ab89a;
    font-weight: 400;
    margin-top: 1px;
}

.hp-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.hp-value {
    padding: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    transition: border-color .2s;
}

.hp-value:hover {
    border-color: rgba(167, 243, 208, .2);
}

.hp-value-icon {
    color: #a7f3d0;
    margin-bottom: 16px;
    opacity: .8;
}

.hp-value-title {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.hp-value-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.75;
}

.hp-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.hp-member-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    background: #f0faf3;
    border: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.hp-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-member-initials {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #c8e6c8;
    font-style: italic;
}

.hp-member-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f1f0f;
}

.hp-member-role {
    font-size: 12px;
    color: #7a9e7a;
    margin-top: 2px;
}

.hp-cta-wrap {
    max-width: 1100px;
    margin: 0 auto 72px;
    padding: 0 32px;
}

.hp-cta {
    padding: 56px 52px;
    border-radius: 20px;
    background: #052e16;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.hp-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hp-cta-title em {
    font-style: italic;
    color: #a7f3d0;
}

.hp-cta-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .38);
    margin-top: 8px;
}

.hp-cta-btn {
    flex-shrink: 0;
    padding: 14px 32px;
    background: #a7f3d0;
    color: #052e16;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 99px;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}

.hp-cta-btn:hover {
    background: #fff;
}

.uc-footer {
    background: #f4f8f4;
    border-top: 1px solid rgba(0, 0, 0, .07);
    padding: 64px 32px 36px;
    color: #1a2e1a;
}

.uc-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.uc-footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.uc-footer-brand img {
    height: 32px;
    margin-bottom: 14px;
}

.uc-footer-brand p {
    font-size: 13px;
    color: #6b8a6b;
    line-height: 1.7;
    max-width: 260px;
}

.uc-footer-col-title {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9ab89a;
    margin-bottom: 16px;
    font-weight: 600;
}

.uc-footer-col a {
    display: block;
    font-size: 13px;
    color: #4a6a4a;
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .15s;
}

.uc-footer-col a:hover {
    color: #0f1f0f;
}

.uc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
}

.uc-footer-copy {
    font-size: 12px;
    color: #9ab89a;
}

.uc-footer-legal {
    display: flex;
    gap: 20px;
}

.uc-footer-legal a {
    font-size: 12px;
    color: #7a9e7a;
    text-decoration: none;
    transition: color .15s;
}

.uc-footer-legal a:hover {
    color: #0f1f0f;
}

.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal-overlay.show {
    display: flex;
}

.cookie-modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    max-width: 520px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .15);
}

.cookie-modal h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0f1f0f;
    margin-bottom: 6px;
}

.cookie-modal p {
    font-size: 13px;
    color: #6b8a6b;
    margin-bottom: 24px;
    line-height: 1.65;
}

.cookie-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    gap: 16px;
}

.cookie-row-text p {
    font-size: 13.5px;
    font-weight: 600;
    color: #0f1f0f;
    margin-bottom: 3px;
}

.cookie-row-text span {
    font-size: 12px;
    color: #7a9e7a;
}

.cookie-toggle {
    position: relative;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle label {
    display: block;
    width: 44px;
    height: 24px;
    background: #d1d5db;
    border-radius: 99px;
    cursor: pointer;
    transition: background .2s;
}

.cookie-toggle input:checked+label {
    background: #16a34a;
}

.cookie-toggle label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: left .2s;
}

.cookie-toggle input:checked+label::after {
    left: 23px;
}

.cookie-toggle input:disabled+label {
    opacity: .5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn-all {
    padding: 10px 20px;
    background: #16a34a;
    color: #fff;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .15s;
}

.cookie-btn-all:hover {
    background: #15803d;
}

.cookie-btn-save {
    padding: 10px 20px;
    background: #f4f8f4;
    color: #0f1f0f;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
    transition: background .15s;
}

.cookie-btn-save:hover {
    background: #e8f4e8;
}

@media (max-width: 768px) {
    .hp-stats {
        flex-wrap: wrap;
    }

    .hp-stat {
        flex: 1 1 50%;
    }

    .hp-steps,
    .hp-values,
    .hp-team-grid {
        grid-template-columns: 1fr;
    }

    .hp-cta {
        flex-direction: column;
        padding: 40px 28px;
    }

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

    .hp-app {
        flex-direction: column;
    }
}
