.demo-hero {
    position: relative;
    padding: 10rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.demo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.demo-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -150px;
}

.demo-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    right: -100px;
}

.demo-hero-content {
    position: relative;
    z-index: 2;
}

.demo-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #f0f0f0;
    border: 1px solid #cccccc;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.demo-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    color: #0058a3;
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: var(--dark) !important;
    animation: fadeInUp 1s ease-out !important;
    opacity: 1 !important;
}

.demo-gradient {
    background: var(--primary);
}

.demo-sub {
    font-size: 1.15rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.demo-form-section {
    padding: 2rem 0 6rem;
}

.demo-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.demo-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 16px;
    padding: 2.5rem;
    overflow: hidden;
}

.demo-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.demo-accent-green {
    background: #0058a3 !important;
}

.demo-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #0058a3;
    margin-bottom: 0.5rem;
}

.demo-card-sub {
    color: #444444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-card .form-group {
    margin-bottom: 1.25rem;
}

.demo-card .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.demo-card .form-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #f5f5f5;
    border: 1px solid #dddddd;
    border-radius: 8px;
    color: #0058a3;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.demo-card .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px #f0f0f0;
}

.demo-card .form-group input::placeholder {
    color: #666666;
}

.demo-submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    cursor: pointer;
}

.demo-submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.demo-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: #666666;
    margin-top: 1.25rem;
}

.demo-unlocked-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.demo-access-card {
    text-align: center;
}

.demo-files {
    margin: 2rem 0;
}

.demo-file-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f5f5f5;
    border: 1px solid #dddddd;
    border-radius: 12px;
    text-decoration: none;
    color: #0058a3;
    transition: all 0.3s;
}

.demo-file-link:hover {
    border-color: var(--primary);
    background: #f0f0f0;
    transform: translateY(-2px);
}

.demo-file-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.demo-file-info {
    text-align: left;
    flex: 1;
}

.demo-file-info strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}

.demo-file-info span {
    font-size: 0.85rem;
    color: #555555;
}

.demo-file-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}

.demo-cta-box {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.demo-cta-box p {
    color: #444444;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 600px) {
    .demo-card {
        padding: 1.75rem 1.25rem;
    }

    .demo-file-link {
        padding: 1rem;
    }
}
