:root {
    --purple: #4D3283;
    --accent: #57bbcc;
    --muted: #bfeff0;
    --white: #ffffff;
    --max-width: 1200px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--white);
    background: var(--purple);
    overflow-x: hidden;
}

/* HEADER */
.topbar {
    background: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    height: 75px;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo {
    position: relative;
    bottom: -18px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: var(--max-width);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: 40px;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    /* align-items: center; */
}

/* LEFT SIDE */
.hero-left {
    flex: 1 1 400px;
    color: var(--white);
}

.hero-title {
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.3;
    font-weight: 700;
}

.hero-title .phone {
    color: #57bbcc;
    text-decoration: none;
    font-weight: 800;
}

.hero-title .phone:hover {
    text-decoration: underline;
}

/* RIGHT SIDE */
.hero-right {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
}

.form-wrapper {
    width: 100%;
    background: var(--pink);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    /* max-height: 500px;
    overflow-y: auto; */
}

.hs-form-frame {
    width: 100%;
    min-height: 500px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-inner {
        /* flex-direction: column; */
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .hero-left,
    .hero-right {
        flex: 1 1 100%;
    }

    .hero-right {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 16px;
        border-radius: 12px;
    }

    .logo img {
        height: 80px;
    }
}