/* Salez Girl Landing Page - Minimal Split Redesign */

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'DM Sans', sans-serif;
    color: var(--gray-900);
    background: #fff;
}

.split-layout {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* =========================================
   Left Panel
   ========================================= */
.left-panel {
    flex: 0 0 50%;
    /* Adjusted to 50% for standard split */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 4rem;
    background: #fff;
    position: relative;
    z-index: 10;
}

/* Header / Logo */
.lp-header {
    margin-bottom: 2rem;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

/* Main Content */
.lp-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    /* background: url(../images/bg-white-bg.jpg);
    background-repeat: no-repeat; */
    width: 100%;
    height: 100%;
    padding-inline: 1.5rem;
}

.lp-subhead {
    display: block;
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lp-headline {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    font-weight: 500;
    /* Minimalist font weight */
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin: 0;
}

.lp-description-mobile {
    display: none;
    /* Hidden on desktop to match reference layout */
    margin-top: 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Footer / Actions */
.lp-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
}

.lp-action-left {
    flex: 0 0 auto;
}

.lp-action-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    /* Stack description and button */
    align-items: flex-end;
    text-align: right;
    gap: 1.5rem;
}

.lp-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-500);
    max-width: 250px;
}

/* =========================================
   Pill Buttons
   ========================================= */
.pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.75rem 0.75rem 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
    /* Ensure uniform width if desired, or fit-content */
    gap: 1.5rem;
}

.btn-text {
    font-size: 1rem;
    white-space: nowrap;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pill-btn:hover .btn-icon {
    transform: rotate(-45deg);
}

/* Button Variants */
/* 1. Brand Filled (Black equivalent in reference, so we use Dark or Brand Pink) */
.btn-brand {
    background: var(--pink-900);
    /* Dark Pink for high contrast */
    color: #fff;
}

.btn-brand .btn-icon {
    background: #fff;
    color: var(--pink-900);
}

/* 2. Light / Alternate (Opposite) */
.btn-light-alt {
    background: var(--pink-100);
    color: var(--pink-900);
}

.btn-light-alt .btn-icon {
    background: #fff;
    color: var(--pink-900);
}

.btn-light-alt:hover {
    background: var(--pink-200);
}

/* =========================================
   Right Panel
   ========================================= */
.right-panel {
    flex: 1;
    /* Takes remaining space */
    position: relative;
    background: var(--gray-100);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .lp-headline {
        font-size: 3rem;
    }

    .left-panel {
        padding: 2rem;
        flex: 0 0 55%;
    }
}

@media (max-width: 850px) {
    .split-layout {
        flex-direction: column;
        height: auto;
    }

    .left-panel {
        flex: 0 0 auto;
        min-height: 50vh;
        padding: 2rem 1.5rem;
    }

    .right-panel {
        height: 50vh;
        order: -1;
        /* Image on top for mobile? Or bottom. Reference doesn't specify but standard is top. */
    }

    .lp-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .lp-action-right {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .lp-description {
        display: none;
        /* Hide footer description on mobile */
    }

    .lp-description-mobile {
        display: block;
        /* Show mobile description */
    }

    .pill-btn {
        width: 100%;
    }

    .lp-headline {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 2rem;
    }
}