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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding: 10px;
        max-width: 100%;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
        text-align: center;
    }

    section {
        padding: 20px 15px;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    .pricing {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        max-width: 250px;
        margin: 10px 0;
    }

    footer ul {
        flex-direction: column;
        align-items: center;
    }

    footer li {
        margin: 5px 0;
    }

    .large {
        font-size: 1em;
        padding: 15px 30px;
    }

    .logo svg {
        width: 150px;
        height: 45px;
    }
}

.scarcity {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    margin: 15px 0;
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

.credibility {
    color: #4ade80;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    margin-top: 15px;
    text-shadow: 0 0 5px rgba(74, 222, 128, 0.5);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #cfe8ff;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00ffff;
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.12);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-note {
    color: #b6c9ff;
    margin-top: -12px;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.form-section {
    margin-bottom: 32px;
}

.form-section h2 {
    font-size: 1.5em;
    margin-bottom: 18px;
    color: #c3f6ff;
}

.form-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

footer .form-note {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.site-nav a {
    color: #c3f6ff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.site-nav a:hover {
    color: #ffffff;
    border-color: #00ffff;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.cta {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin: 10px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta:hover:before {
    left: 100%;
}

.primary {
    background: rgba(255, 255, 255, 0.95);
    color: #0080ff;
    border-color: #00ffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.primary:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.secondary {
    background: transparent;
    color: #00d4ff;
    border-color: #00d4ff;
}

.secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #00d4ff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

.pricing {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.plan {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 250px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.popular {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    width: 200px;
    margin: 10px;
}

footer {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

footer li {
    margin: 0 15px;
}

footer a {
    text-decoration: none;
    color: #00d4ff;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffffff;
}

.copyright {
    font-size: 0.9em;
    color: #cccccc;
    margin-top: 10px;
    text-align: center;
}

section .cta {
    margin: 20px auto;
    display: block;
    max-width: 300px;
}