:root {
    --accent-gold: #ffea00;
    --accent-glow: rgba(255, 234, 0, 0.4);
    --input-bg: rgba(0, 0, 0, 0.25);
    --input-border: rgba(255, 255, 255, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: radial-gradient(circle at 10% 20%, #ff2a5f 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, #6b21a8 0%, transparent 50%),
        linear-gradient(135deg, #d91b5c 0%, #7e22ce 50%, #3b0764 100%);
    color: #ffffff;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    border-left: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    padding: 30px 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.brand-header {
    text-align: center;
    margin-bottom: 15px;
}

.brand-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
}

.brand-logo-frame {
    background: radial-gradient(circle, #fefcfc 0%, #d81b9c 70%, #3f0331 100%);
    padding: 2px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(165, 33, 132, 0.5);
}

.brand-logo {
    height: 75px;
    width: auto;
}

.brand-title {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.sub-headline {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-shadow: 0 0 12px var(--accent-glow);
}

.mini-text {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 0.2px;
}

.offer-banner {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 15px;
    pointer-events: none;
    z-index: 2;
}

input,
select {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    outline: none;
    transition: all 0.2s ease;
}

select option {
    background-color: #4c1d95;
    color: #ffffff;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

input:focus,
select:focus {
    border-color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 6px;
    border-radius: 12px;
    text-align: center;
}

.feature-card i {
    font-size: 16px;
    color: var(--accent-gold);
    margin-bottom: 4px;
    display: block;
}

.feature-card span {
    font-size: 12px;
    font-weight: 700;
}

.footer-contact {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--accent-gold);
}

.contact-float-wrapper {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-float-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.7);
    animation: pulse 1.5s infinite;
}

.contact-float-link.call-link {
    background: #1e293b;
}

.contact-float-link.wa-link {
    background: #4ade80;
    color: white;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.45);
}

.contact-float-link i {
    display: block;
}

.contact-float-link.call-link i {
    font-size: 24px;
    color: #60a5fa;
}

.contact-float-link.wa-link i {
    font-size: 30px;
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 650px) {
    .container {
        padding: 20px 16px;
    }

    .brand-logo {
        height: 40px;
    }

    .brand-title {
        font-size: 20px;
    }

    .sub-headline {
        font-size: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .full-width {
        grid-column: auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    input,
    select {
        padding: 10px 12px 10px 38px;
        font-size: 13px;
    }
}
