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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #F9F0EA 50%, #ffffff 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.header {
    padding: 0.75rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: #348054;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem 1.5rem;
}

.container {
    width: 100%;
    max-width: 52rem;
}

.card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .card {
        padding: 1.75rem;
    }
}

/* Badge */
.badge-container {
    margin-bottom: 1.25rem;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(52, 128, 84, 0.1);
    color: #348054;
    border: 1px solid rgba(52, 128, 84, 0.2);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Title */
h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 1.875rem;
    }
}

.highlight {
    color: #348054;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #F9F0EA;
    border-radius: 0.75rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: #348054;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
}

/* Button */
.cta-button {
    width: 100%;
    height: 3.5rem;
    background: #348054;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
}

.cta-button:hover {
    background: #2a6844;
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

.cta-button svg {
    transition: transform 0.2s;
}

.cta-button:hover svg {
    transform: translateX(0.25rem);
}

/* Footer */
.footer-text {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
}


@media (max-width: 768px) {
    .main-content {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1.5rem 1.5rem;
        margin-top: -45px;
    }
}