:root {
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #1f2933;
    --muted: #6b7280;
    --accent: #3b82f6;
}

body {
    background: var(--bg);
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    margin: 0;
    padding: 0;
}

.lander-section a::after {
    content: "?";
    font-size: 0.75em;
    margin-left: 4px;
    opacity: 0.6;
}

.lander-section {
    margin-top: 3rem;
}

.lander-section h4 {
    font-weight: 600;
}



.card {
    max-width: 540px;
    margin: 50px auto;
    padding: 42px;
    border-radius: 16px;
    background: var(--card);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.trust {
    background: #1f2933; /* Dark background */
    color: #f9fafb;
    margin: 30px auto 0;
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    max-width: 520px;
    transition: transform .2s ease-in-out;
}

.trust:hover {
    transform: translateY(-2px);
}

.trust a img {
    margin: 0 8px;
    vertical-align: middle;
    transition: transform .2s ease-in-out;
    filter: brightness(0) invert(1);
    height: 28px;
}

/* Slight icon pop on hover */
.trust a img:hover {
    transform: scale(1.2);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .trust {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .trust a img {
        height: 24px;
        margin: 0 auto;
    }
}

.card-floating {
    background: #f1f5f9; /* light card background */
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 30px auto 0;
    max-width: 520px;
    transition: transform .2s ease-in-out;
}

.card-floating:hover {
    transform: translateY(-2px);
}

.card-floating h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #1f2933;
}

.card-floating ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-floating ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.card-floating ul li a {
    color: #3b82f6;
    text-decoration: none;
}

.card-floating ul li a:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .card-floating {
        padding: 16px;
        margin: 20px auto 0;
    }
}


h1 {
    font-size: 32px;
    margin-bottom: 12px;
    word-break: break-word;
}

.price {
    font-size: 28px;
    font-weight: 600;
    margin: 22px 0 8px;
}

.muted {
    color: var(--muted);
}

input, textarea {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    box-sizing: border-box;
}

button {
    margin-top: 16px;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    transition: opacity .2s ease-in-out;
}

button:hover {
    opacity: .9;
}

.honeypot {
    display: none !important;
}

.domain-box {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}
.domain-box h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #1f2933;
}
.domain-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.domain-box ul li {
    margin-bottom: 8px;
    font-size: 15px;
}
.domain-box ul li a {
    color: #3b82f6;
    text-decoration: none;
}
.domain-box ul li a:hover {
    text-decoration: underline;
}


