:root {
    --cream: #ffffff;
    --cream-dark: #f3f3f3;
    --amber: #ff0055;
    --amber-light: #cc0044;
    --charcoal: #000000;
    --warm-gray: #333333;
    --warm-gray-light: #666666;
    --border: #e5e5e5;
    --cta-bg: #ff0055;
    --cta-hover: #cc0044;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    border-radius: 9999px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: #ffffff;
    font-size: 17px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 20px;
}

.topbar {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-mark img {
    width: 42px;
    height: 42px;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    text-align: left;
}

.brand-name {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    letter-spacing: -0.04em;
}

.brand-name strong {
    font-weight: 700;
    color: #ffffff;
}

.brand-name span {
    font-weight: 300;
    color: #ffffff;
}

main {
    display: flex;
    justify-content: center;
}

.contact-form-container {
    background-color: white;
    border-radius: 12px;
    padding: 32px 24px;
    width: 100%;
    max-width: 600px;
    border: none;
}

.eyebrow {
    color: var(--warm-gray);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

h1 {
    text-align: center;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
}

.subtitle {
    color: var(--warm-gray);
    font-size: 16px;
    margin-bottom: 20px;
}

.fit-line {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--amber);
    margin: 0 auto 12px;
}

.benefits-list {
    list-style: none;
    text-align: center;
    padding-left: 0;
    margin-bottom: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.35;
    color: var(--charcoal);
    text-align: center;
}

.benefits-list .check-icon {
    margin-right: 10px;
    flex-shrink: 0;
    color: var(--amber);
    font-size: 1.1em;
    margin-top: 0;
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 18px;
}

#turnstile-container {
    display: flex;
    justify-content: center;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--warm-gray);
    font-size: 14px;
}

input, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d3dae3;
    border-radius: 8px;
    font-size: 20px;
    font-family: var(--font-body);
    color: var(--charcoal);
    background: #fcfdff;
    transition: border-color 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: var(--warm-gray-light);
    opacity: 0.60;
}

input[placeholder]:not(:placeholder-shown),
textarea[placeholder]:not(:placeholder-shown) {
    background: #ffffff;
}

.submit-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: var(--cta-bg);
    color: #ffffff;
    padding: 1.2rem 2rem;
    border-radius: 9999px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    font-family: var(--font-body);
    transition: background-color 0.2s ease;
    width: 100%;
}

.submit-btn__primary {
    display: block;
    line-height: 1.15;
}

.submit-btn__secondary {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    opacity: 0.92;
}

.submit-btn:hover {
    background: var(--cta-hover);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#form-messages {
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.4;
}

.success-message {
    background-color: rgba(255, 0, 85, 0.08);
    color: var(--charcoal);
    border: 1px solid rgba(255, 0, 85, 0.25);
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
}

.error-message {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.error {
    border-color: #dc3545;
}

.hint-text {
    margin-top: 20px;
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.5;
}

.hint-text a {
    color: var(--amber);
    text-decoration: underline;
}

.hint-emphasis {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #6b7280;
    font-size: 14px;
}

footer a {
    color: #6b7280;
    text-decoration: none;
}

footer a:hover {
    color: #4b5563;
}

.exit-intent {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1000;
}

.exit-intent.is-visible {
    display: flex;
}

.exit-intent__dialog {
    position: relative;
    width: min(100%, 560px);
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 28px 24px;
    border: 1px solid rgba(255, 0, 85, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.exit-intent__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    background: #f3f3f3;
    color: var(--warm-gray);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.exit-intent__title {
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-size: 29px;
    font-weight: 400;
    line-height: 1.1;
}

.exit-intent__text {
    color: var(--warm-gray);
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.exit-intent__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    border: 0;
    background: var(--cta-bg);
    color: #ffffff;
    padding: 1.1rem 1.4rem;
    border-radius: 9999px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background-color 0.2s ease;
}

.exit-intent__cta:hover {
    background: var(--cta-hover);
}

.exit-intent__cta-primary {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
}

.exit-intent__cta-secondary {
    display: block;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 500;
    opacity: 0.95;
}

.exit-intent__dismiss {
    margin-top: 14px;
    border: 0;
    background: transparent;
    color: var(--warm-gray-light);
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 768px) {
    input, textarea {
        font-size: 18px;
    }

    .submit-btn {
        font-size: 18px;
        padding: 1rem 1.6rem;
    }

    .contact-form-container {
        padding: 20px 16px;
    }

    .logo {
        max-width: 150px;
    }

    h1 {
        font-size: 24px;
    }

    .benefits-list {
        max-width: 420px;
        margin: 0 auto 20px;
        text-align: center;
    }

    .benefits-list li {
        justify-content: center;
        text-align: center;
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 7px;
    }

    .benefits-list .check-icon {
        margin-right: 8px;
        transform: translateY(-2px);
    }

    .hint-emphasis {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.5;
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-mark img {
        width: 34px;
        height: 34px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .exit-intent {
        padding: 16px;
    }

    .exit-intent__dialog {
        padding: 32px 20px 22px;
        border-radius: 20px;
    }

    .exit-intent__title {
        font-size: 25px;
    }

    .exit-intent__text {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .exit-intent__cta-primary {
        font-size: 19px;
    }
}

.alternative-contact {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.alternative-contact h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.alternative-contact p {
    margin-bottom: 1rem;
}

.alternative-contact a {
    color: var(--amber);
    text-decoration: none;
    transition: color 0.3s;
}

.alternative-contact a:hover {
    color: var(--amber-light);
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 2.5rem;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.fa-whatsapp {
    color: #FF0055;
}

.fa-telegram {
    color: #0088cc;
}

.fa-instagram {
    color: #E1306C;
}
