.hf-list-contact {
    --hf-bg: #000000;
    --hf-cream: #f5f2df;
    --hf-orange: #ff7a00;
    --hf-border: rgba(245, 242, 223, 0.15);
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    background: var(--hf-bg);
    color: var(--hf-cream);
    font-family: Inter, Arial, Helvetica, sans-serif;
    padding: clamp(100px, 10vw, 150px) 5vw;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.hf-list-contact * {
    box-sizing: border-box;
}

.hf-lc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hf-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.hf-reveal.hf-active {
    opacity: 1;
    transform: translateY(0);
}

.hf-lc-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.hf-lc-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--hf-border);
    transition: border-color 0.3s ease;
}

.hf-lc-row:focus-within,
.hf-lc-row:hover {
    border-bottom-color: var(--hf-orange);
}

.hf-lc-row:focus-within .hf-lc-num,
.hf-lc-row:hover .hf-lc-num {
    color: var(--hf-orange);
}

.hf-lc-num {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 950;
    color: rgba(245, 242, 223, 0.2);
    transition: color 0.3s ease;
    margin-bottom: 4px;
}

.hf-lc-text {
    width: clamp(200px, 25vw, 350px);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 850;
    color: var(--hf-cream);
    margin-bottom: 16px;
}

.hf-lc-input-area {
    display: flex;
    align-items: center;
    width: 100%;
}

.hf-lc-input {
    width: 100% !important;
    background-color: #000000 !important;
    border: 0 solid transparent !important;
    color: var(--hf-cream) !important;
    font-size: clamp(16px, 1.5vw, 20px) !important;
    font-family: inherit !important;
    font-weight: 500 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 16px !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}

.hf-lc-input::placeholder {
    color: var(--hf-cream) !important;
    opacity: 0.35 !important;
    font-weight: 400 !important;
}

textarea.hf-lc-input {
    min-height: 120px !important;
    resize: vertical !important;
    line-height: 1.5 !important;
}

.hf-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hf-pill-group label {
    cursor: pointer;
}

.hf-pill-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hf-pill {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000000 !important;
    border: 1.5px solid rgba(255, 122, 0, 0.4) !important;
    border-radius: 999px;
    color: rgba(245, 242, 223, 0.8);
    font-size: 14.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hf-pill:hover,
.hf-pill-group input[type="radio"]:focus-visible + .hf-pill {
    border-color: var(--hf-orange) !important;
    color: var(--hf-orange) !important;
    box-shadow: 0 0 12px rgba(255, 122, 0, 0.15);
}

.hf-pill-group input[type="radio"]:checked + .hf-pill {
    background-color: var(--hf-orange) !important;
    border-color: var(--hf-orange) !important;
    color: #000000 !important;
    font-weight: 800;
    box-shadow: 0 0 18px rgba(255, 122, 0, 0.25);
}

.hf-turnstile-row {
    padding-top: 30px;
}

.hf-lc-submit-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 50px;
}

.hf-lc-btn {
    background: var(--hf-cream);
    color: var(--hf-bg);
    border: none;
    border-radius: 999px;
    padding: 22px 50px;
    font-size: 18px;
    font-weight: 950;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hf-lc-btn:hover {
    background: var(--hf-orange);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.2);
}

.hf-lc-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.hf-form-status {
    display: none;
    margin-bottom: 35px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 122, 0, 0.45);
    border-radius: 12px;
    background: rgba(255, 122, 0, 0.08);
    color: var(--hf-cream);
    font-size: 15px;
    line-height: 1.5;
}

.hf-form-status.is-visible {
    display: block;
}

.hf-form-status.is-success {
    border-color: rgba(87, 214, 141, 0.55);
    background: rgba(87, 214, 141, 0.08);
}

.hf-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (min-width: 769px) {
    .hf-lc-row {
        flex-direction: row;
    }

    .hf-lc-num {
        width: clamp(60px, 8vw, 100px);
        flex-shrink: 0;
        padding-top: 10px;
        margin-bottom: 0;
    }

    .hf-lc-text {
        flex-shrink: 0;
        padding-right: 20px;
        padding-top: 10px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .hf-list-contact {
        padding: 80px 6vw;
    }

    .hf-lc-num {
        font-size: 16px;
    }

    .hf-lc-text {
        width: 100%;
        font-size: 20px;
    }

    .hf-lc-submit-row {
        justify-content: flex-start;
    }

    .hf-lc-btn {
        width: 100%;
    }

    .hf-lc-input {
        padding: 10px 0 !important;
    }

    .hf-pill {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hf-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
