:root {
    --bg-cream: #f4efeb;
    --text-main: #1e1e1e;
    --text-muted: #666666;
    --teal-dark: #4b6563;
    --radius-lg: 32px;
    --radius-md: 16px;
}

.coming-soon-wrapper {
    background-color: var(--bg-cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

.cs-header {
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.cs-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-decoration: none;
}

.cs-nav {
    display: flex;
    gap: 40px;
}

.cs-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.cs-main {
    flex: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding: 40px 80px;
    align-items: center;
}

.cs-content {
    max-width: 580px;
}

.cs-badge {
    background: rgba(0,0,0,0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #8a7c6a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.cs-title {
    font-size: 5rem;
    line-height: 1;
    font-weight: 800;
    color: var(--teal-dark);
    margin-bottom: 30px;
}

.cs-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 50px;
    opacity: 0.8;
}

.cs-waitlist {
    margin-bottom: 60px;
}

.cs-waitlist h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cs-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cs-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 40px;
    background: #e8e2dd;
    font-size: 1rem;
    outline: none;
}

.cs-btn {
    padding: 18px 35px;
    border-radius: 40px;
    background: var(--teal-dark);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.cs-btn:hover {
    transform: scale(1.02);
}

.cs-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.cs-visual {
    position: relative;
    height: 700px;
}

.cs-image-container {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.cs-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-inspiration {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cs-inspiration span {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.cs-inspiration p {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal-dark);
}

.cs-partners {
    padding: 60px 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-partner-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e1e1e;
    opacity: 0.35;
    text-transform: capitalize;
}

.cs-footer {
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.cs-footer-left p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.cs-footer-nav {
    display: flex;
    gap: 30px;
}

.cs-footer-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.cs-social {
    display: flex;
    gap: 15px;
}

.cs-social-icon {
    width: 36px;
    height: 36px;
    background: #e8e2dd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .cs-main {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    .cs-content {
        margin: 0 auto;
    }
    .cs-form {
        flex-direction: column;
    }
    .cs-visual {
        height: 500px;
    }
    .cs-partners {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cs-header {
        padding: 20px 30px;
    }
    .cs-main {
        padding: 40px 20px;
        gap: 40px;
    }
    .cs-title {
        font-size: 3rem;
    }
    .cs-badge {
        margin-bottom: 24px;
    }
    .cs-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .cs-waitlist {
        margin-bottom: 40px;
    }
    .cs-input {
        width: 100%;
    }
    .cs-btn {
        width: 100%;
    }
    .cs-partners {
        padding: 40px 20px;
    }
    .cs-footer {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 20px;
    }
    .cs-footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cs-inspiration {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--text-main);
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--teal-dark);
    box-shadow: 0 15px 40px rgba(75, 101, 99, 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}
