/*
Theme Name: DirectSell AI Landing
Theme URI: https://directsell.ai
Author: Wyn
Author URI: https://directsell.ai
Description: A premium landing page theme for DirectSell.AI domain sales with modern gradient design and contact form.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: directsell-ai
Tags: landing-page, one-page, domain-sale, gradient, modern
*/

* {
    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, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    width: 100%;
}

.card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

h1 {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.domain-extension {
    color: #764ba2;
}

.tagline {
    font-size: 22px;
    color: #4a5568;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.5;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
    text-align: left;
}

.feature {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

.development-section {
    margin: 60px 0 48px;
    padding: 48px 40px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 20px;
    border: 2px solid #e2e8f0;
}

.development-section h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
}

.dev-intro {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    font-weight: 500;
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.dev-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.dev-card:hover::before {
    opacity: 1;
}

.dev-number {
    font-size: 14px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.dev-card h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.dev-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.7;
}

.tech-stack {
    background: white;
    padding: 28px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    text-align: center;
}

.tech-title {
    font-size: 15px;
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 16px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.cta-section {
    margin-top: 48px;
}

.price-tag {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

.contact-form {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: left;
    display: none;
}

.contact-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

input, textarea, select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #667eea;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.success-message.active {
    display: block;
}

.footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #e2e8f0;
    color: #718096;
    font-size: 14px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }

    .card {
        padding: 40px 30px;
    }

    .tagline {
        font-size: 18px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .development-section {
        padding: 32px 24px;
    }

    .development-section h2 {
        font-size: 28px;
    }

    .dev-intro {
        font-size: 16px;
    }

    .dev-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
