:root {
    --background-gradient: linear-gradient(135deg, #0b1020 0%, #1e3a8a 50%, #0b3b5b 100%);
    --text-color: #e9f0ff;
    --accent-color: #6ee7b7;
    --title-font: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --body-font: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

#hero {
    background: url('../imgs/artisan 3.png') no-repeat center center;
    background-size: cover;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#hero .hero-text {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 12px;
    position: absolute;
    width: 45%;
    max-width: 800px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-5%, -60%);
}

.mobile-hero-text {
    display: none;
}

.glass {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.25s ease;
}

.glass:hover {
    background: rgba(255, 255, 255, 0.25);
}

.glass.accent {
    background: rgba(13, 110, 253, 1);
}

.glass.accent:hover {
    background: rgba(255, 255, 255, 0.25);
}

.caller-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 0.75rem;
    margin: 0;
}

.caller-info dt {
    font-weight: 600;
}

.caller-info dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.transcript {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.bubble {
    max-width: 75%;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.bubble.agent {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.9);
    color: #0b1020;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 4px;
}

.bubble.caller {
    align-self: flex-end;
    background: rgba(13, 110, 253, 1);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.bubble.info {
    align-self: stretch;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

a,
a:hover,
a:focus {
    color: rgb(13, 110, 253);
}

#about {
    /* background: #ffffff; */
    /* box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.2); */
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    margin-top: -50px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

#services {
    background: #F2F1ED;
    margin-top: -35px;

}

#services .services-text {
    background: rgba(255, 255, 255, 0.59);
    /* background: #ffffff; */
    /* box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.2); */
    padding: 20px;

}

#contact .contact-text {
    background: rgba(255, 255, 255, 0.497);
    /* box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.2); */
    padding: 20px;
    margin-top: -100px;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

.service-content {
    padding: 20px;
}

.hs-form__virality-link {
    display: none !important;
}

/* x-small */

@media (max-width: 576px) {}

/* small */

@media (max-width: 768px) {

    #hero .hero-text {
        display: none;
    }

    .mobile-hero-text {
        display: block;
    }

    nav {
        display: none;
    }
}

/* medium */

@media (max-width: 992px) {
    nav {
        display: none;
    }
}

/* large */

@media (max-width: 1200px) {

    #hero {
        height: 55vh;
    }

    #about {
        width: 85%;
    }
}

/* x-large */

@media (max-width: 1400px) {}