/* Base, header, buttons, layout from earlier message... */
/* (Paste previous CSS here if you haven’t yet.) */

/* --- Extra components --- */

.hf-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hf-card-quote {
    font-style: italic;
}

.hf-quote-attrib {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #c6c7d0;
}

/* Pricing cards */

.hf-card-pricing {
    position: relative;
}

.hf-card-pricing-featured {
    border-color: rgba(65,245,255,0.6);
    box-shadow: 0 0 0 1px rgba(65,245,255,0.3);
}

.hf-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(65,245,255,0.16);
    color: #41f5ff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hf-price-note {
    color: #c6c7d0;
    font-size: 14px;
}

.hf-price-footnote {
    margin-top: 10px;
    font-size: 13px;
    color: #c6c7d0;
}

/* Lists */

.hf-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.hf-list li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
    font-size: 14px;
}

.hf-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #41f5ff;
}

/* Forms */

.hf-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hf-form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hf-form-row label {
    font-size: 13px;
    color: #c6c7d0;
}

.hf-form-row input,
.hf-form-row select,
.hf-form-row textarea {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.16);
    padding: 8px 10px;
    background: rgba(6,8,14,0.9);
    color: #f5f5f5;
    font-size: 14px;
}

.hf-form-row input:focus,
.hf-form-row select:focus,
.hf-form-row textarea:focus {
    outline: none;
    border-color: rgba(65,245,255,0.6);
}

.hf-form-actions {
    margin-top: 8px;
}

/* Alerts */

.hf-alert {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 12px;
}

.hf-alert-success {
    background: rgba(40,167,69,0.12);
    border: 1px solid rgba(40,167,69,0.5);
    color: #9be7b0;
}

.hf-alert-error {
    background: rgba(220,53,69,0.12);
    border: 1px solid rgba(220,53,69,0.5);
    color: #f8b3bc;
}

/* Final CTA */

.hf-final-cta-inner {
    padding: 24px 24px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: radial-gradient(circle at 0 0, rgba(65,245,255,0.25), rgba(10,12,20,0.96));
    text-align: center;
}

.hf-final-cta-inner p {
    color: #c6c7d0;
    margin-bottom: 16px;
}

.hf-final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive updates */

@media (max-width: 880px) {
    .hf-grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .hf-main {
        padding: 24px 16px 48px;
    }
}
.hf-iframe-wrapper {
    width: 100%;
    height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.hf-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.hf-hero-video {
    max-width: 520px;
}

.hf-video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,0.8);
}

.hf-video-caption {
    font-size: 13px;
    color: #cbd5f5;
    margin-top: 8px;
}

.hf-video-grid iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
}

.hf-link {
    color: #22d3ee;
    text-decoration: none;
    font-size: 14px;
}
.hf-link:hover {
    text-decoration: underline;
}
/* Logo badge */
.hf-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #f9fafb;
}

.hf-logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #22d3ee, #064e3b);
    border: 2px solid rgba(249, 250, 251, 0.9);
    position: relative;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.9);
}

/* simple antlers + hook hints */
.hf-logo-antlers::before,
.hf-logo-antlers::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #f9fafb;
    border-bottom: none;
    border-left: none;
    border-radius: 4px;
}
.hf-logo-antlers::before {
    top: 10px;
    left: 9px;
    transform: rotate(-20deg);
}
.hf-logo-antlers::after {
    top: 10px;
    right: 9px;
    transform: rotate(20deg);
}
.hf-logo-hook::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 18px;
    border: 2px solid #f9fafb;
    border-top: none;
    border-right: none;
    border-radius: 0 0 12px 10px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.hf-logo-textblock {
    display: flex;
    flex-direction: column;
}

.hf-logo-title {
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 16px;
}

.hf-logo-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a5b4fc;
}

/* Videos */
.hf-hero-video {
    max-width: 520px;
}

.hf-video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,0.8);
}

.hf-video-caption {
    font-size: 13px;
    color: #cbd5f5;
    margin-top: 8px;
}

.hf-video-grid iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
}

/* Utility */
.hf-muted {
    color: #9ca3af;
    font-size: 14px;
}

.hf-mt-lg {
    margin-top: 32px;
}
.hf-mt-sm {
    margin-top: 8px;
}
