.intro-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.intro-block {
    background: #e8f2fc;
    border-radius: 16px;
    padding: 0.9rem 0.9rem;
    box-shadow: none;
}

.intro-title {
    font-size: 0.98rem;
    font-weight: 900;
    color: #0f5f7f;
    margin-bottom: 0.45rem;
}

.intro-text {
    font-size: 0.86rem;
    line-height: 1.5;
    color: #376777;
    margin: 0 0 0.55rem;
}

.intro-text:last-of-type {
    margin-bottom: 0;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-row .intro-text {
    margin: 0;
}

.copy-link {
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    font-weight: 700;
    font-size: 0.78rem;
    color: #0f5f7f;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.copy-link:hover {
    color: #004b5a;
}


.intro-beta {
    margin-top: 0.8rem;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.8rem;
    box-shadow: 0 4px 18px rgba(33, 150, 243, 0.10);
}

.intro-beta-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f5f7f;
}

.intro-beta-desc {
    font-size: 0.78rem;
    color: #5a7c8a;
    margin: 0.3rem 0 0.6rem;
}

.beta-form {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.beta-input {
    flex: 1;
    min-width: 180px;
    border: 1px solid rgba(0, 152, 178, 0.25);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
    color: #0f5f7f;
    background: #f8fbff;
}

.beta-input:focus {
    outline: none;
    border-color: #0098b2;
    box-shadow: 0 0 0 3px rgba(0, 152, 178, 0.12);
}

.beta-button {
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 800;
    font-size: 0.82rem;
    color: #ffffff;
    background: linear-gradient(135deg, #0098b2 0%, #00b0c8 100%);
    box-shadow: 0 6px 14px rgba(0, 88, 110, 0.16);
    cursor: pointer;
    transition: transform 0.06s ease, box-shadow 0.2s ease;
}

.beta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0, 88, 110, 0.22);
}

.beta-message {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: #0f5f7f;
}

@media (max-width: 600px) {
    .intro-block {
        padding: 0.85rem 0.8rem;
    }
    .beta-form {
        flex-direction: column;
        align-items: stretch;
    }
    .beta-button {
        width: 100%;
    }
}
