/* ========================================
   UX OPTIMIZATIONS & MOBILE  
   ======================================== */

.field-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--muted-ivory);
    opacity: 0.7;
    margin-top: 6px;
    font-style: italic;
}

input[type="email"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus {
    border-color: var(--gold-hint);
    box-shadow: 0 0 0 2px rgba(197, 153, 100, 0.1);
    outline: none;
}

@media (max-width: 767px) {

    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        font-size: 16px !important;
        padding: 16px 18px !important;
        min-height: 52px;
        border-radius: 8px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    label {
        font-size: 0.95rem;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .field-hint {
        font-size: 0.75rem;
        margin-top: 4px;
    }

    .checkout-actions {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(15, 13, 10, 0) 0%, rgba(15, 13, 10, 0.95) 20%, rgba(15, 13, 10, 1) 100%);
        padding: 20px 20px 30px;
        margin: 0 -20px;
        z-index: 100;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(177, 18, 26, 0.2);
    }

    #btn-checkout {
        width: 100%;
        font-size: 1.1rem;
        padding: 18px;
        min-height: 56px;
    }
}

@media (min-width: 768px) {

    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        min-height: 48px;
        padding: 14px 16px;
    }
}


/* ========================================
   OUTSIDERS FOOTER BRANDING
   ======================================== */


.outsiders-footer {
    background: linear-gradient(180deg, rgba(15, 13, 10, 0.8) 0%, rgba(15, 13, 10, 1) 10%);
    border-top: 1px solid rgba(177, 18, 26, 0.3);
    padding: 80px 0 40px;
    margin-top: 120px;
    position: relative;
    z-index: 1;
    clear: both;
}


.outsiders-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 153, 100, 0.5) 50%, transparent 100%);
}

.powered-section {
    text-align: center;
    margin-bottom: 60px;
}

.powered-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.powered-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--muted-ivory);
    opacity: 0.6;
}

.outsiders-logo {
    height: 28px;
    width: auto;
    opacity: 0.9;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.outsiders-logo:hover {
    opacity: 1;
    filter: brightness(1.3);
    transform: scale(1.05);
}

.powered-tagline {
    font-size: 0.95rem;
    color: var(--muted-ivory);
    opacity: 0.7;
    font-style: italic;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(177, 18, 26, 0.3) 50%, transparent 100%);
    margin: 60px 0;
}

.footer-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.cta-headline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-hint);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.cta-description {
    font-size: 1rem;
    color: var(--muted-ivory);
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, rgba(197, 153, 100, 0.15) 0%, rgba(177, 18, 26, 0.1) 100%);
    color: var(--gold-hint);
    border-color: rgba(197, 153, 100, 0.3);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, rgba(197, 153, 100, 0.25) 0%, rgba(177, 18, 26, 0.15) 100%);
    border-color: rgba(197, 153, 100, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 153, 100, 0.2);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ivory);
    border-color: rgba(255, 255, 255, 0.1);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-credits {
    text-align: center;
}

.credits-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.credit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.credit-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted-ivory);
    opacity: 0.5;
    font-weight: 600;
}

.credit-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.credit-logo {
    height: 24px;
    width: auto;
    opacity: 0.8;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.credit-logo:hover {
    opacity: 1;
    filter: brightness(1.3);
    transform: scale(1.05);
}

.logo-separator {
    font-size: 1rem;
    color: var(--muted-ivory);
    opacity: 0.4;
}

.flow-agency-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.flow-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ivory);
}

.flow-icon {
    font-size: 1.2rem;
    filter: grayscale(0.3);
}

.flow-agency-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.flow-agency-link:hover .flow-icon {
    filter: grayscale(0);
    animation: pulse-glow 0.6s ease;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.footer-legal {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal p {
    font-size: 0.8rem;
    color: var(--muted-ivory);
    opacity: 0.4;
}

@media (max-width: 767px) {
    .outsiders-footer {
        padding: 60px 20px 30px;
        margin-top: 80px;
    }

    .powered-badge {
        flex-direction: column;
        gap: 12px;
    }

    .outsiders-logo {
        height: 24px;
    }

    .cta-headline {
        font-size: 1.4rem;
    }

    .cta-description {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .credits-row {
        flex-direction: column;
        gap: 40px;
    }

    .credit-logo {
        height: 20px;
    }

    .footer-divider {
        margin: 40px 0;
    }
}