:root {
    --bg: #f4f1ea;
    --text: #0e0e0e;
    --muted: #6a6862;
    --glass: rgba(255, 255, 255, 0.55);
    --border: rgba(0, 0, 0, 0.08);
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* BACKGROUND EFFECT */
.bg-blur {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00000010, transparent 60%);
    top: -200px;
    right: -200px;
    filter: blur(40px);
    z-index: 0;
}

/* HEADER */
.header {
    text-align: center;
    padding: 120px 20px 40px;
    position: relative;
    z-index: 1;
}

.header h1 {
    font-size: 52px;
    font-family: "Inconsolata", monospace;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.header p {
    max-width: 650px;
    margin: auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

/* WRAPPER */
.wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
    max-width: 1150px;
    margin: auto;
    padding: 20px 20px 70px;
    position: relative;
    z-index: 1;
}

/* GLASS CARD */
.glass {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* LEFT CARD */
.info {
    padding: 35px;
    height: 100%;
    overflow: visible;
    position: relative;
    text-align: center;
}

.logo {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #0e0e0e;
    margin: 0 auto 15px;
    display: flex;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand {
    font-family: "Inconsolata", monospace;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.desc {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 0;
}

.features {
    margin-top: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 14px;
    text-align: left;
}

.feature i {
    color: var(--text);
    font-size: 17px;
}

/* MEETING WHATSAPP CTA */
.meeting-whatsapp {
    margin-top: 28px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0e0e0e, #2f2c27);
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.meeting-whatsapp::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.meeting-whatsapp::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    left: -45px;
    bottom: -45px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
}

.meeting-whatsapp-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.meeting-whatsapp-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
}

.meeting-whatsapp h5 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.meeting-whatsapp p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.meeting-whatsapp-btn {
    margin-top: 18px;
    width: 100%;
    min-height: 46px;
    border-radius: 999px;
    background: #fff;
    color: #0e0e0e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.meeting-whatsapp-btn:hover {
    background: #25d366;
    color: #fff;
    transform: translateY(-3px);
}

.meeting-whatsapp-btn i {
    font-size: 15px;
}

/* RIGHT FORM */
.form-box {
    padding: 35px;
}

.title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

label {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--muted);
}

.form-control,
.form-select {
    border-radius: 14px;
    padding: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    transition: 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: #000;
    box-shadow: none;
    background: #fff;
}

textarea {
    resize: none;
}

/* BUTTON */
.btn-root {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border-radius: 999px;
    border: 1px solid #0e0e0e;
    background: #0e0e0e;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn-root:hover {
    background: transparent;
    color: #0e0e0e;
    border: 1px solid #0e0e0e;
}

/* SMALL TEXT */
.small-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wrapper {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .info {
        height: auto;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 105px 18px 30px;
    }

    .header h1 {
        font-size: 40px;
    }

    .header p {
        font-size: 14px;
    }

    .wrapper {
        padding: 15px 15px 55px;
        gap: 22px;
    }

    .info,
    .form-box {
        padding: 24px;
        border-radius: 22px;
    }

    .features {
        margin-top: 28px;
    }

    .feature {
        font-size: 13px;
    }

    .meeting-whatsapp {
        padding: 20px;
    }

    .meeting-whatsapp-top {
        flex-direction: column;
        gap: 12px;
    }

    .meeting-whatsapp-btn {
        font-size: 13px;
        min-height: 44px;
    }

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

@media (max-width: 480px) {
    .header h1 {
        font-size: 34px;
    }

    .logo {
        width: 82px;
        height: 82px;
    }

    .brand {
        font-size: 27px;
    }

    .meeting-whatsapp h5 {
        font-size: 16px;
    }

    .meeting-whatsapp p {
        font-size: 12px;
    }
}