:root {
    --primary: #007AFF;
    --bg: #0a0a0a;
    --card-bg: #111111;
    --text: #ffffff;
    --text-dim: #888888;
    --border: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary);
}

.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
}

.pricing {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 100px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px 30px;
    width: 350px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.1);
}

.card.featured {
    background: #161616;
    border-color: #333;
    position: relative;
}

.card.featured::after {
    content: "Recommended";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    min-height: 50px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.price-forever {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 40px;
}

.price-forever span {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.8;
}

button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.2s;
}

button:hover {
    opacity: 0.9;
}

button:disabled {
    background: #333;
    cursor: not-allowed;
}

.contact-section {
    max-width: 600px;
    margin: 0 auto 150px;
    padding: 60px 40px;
    background: var(--card-bg);
    border-radius: 32px;
    border: 1px solid var(--border);
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

form input, form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 15px;
    background: #000000;
    border: 1px solid var(--border);
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

form textarea {
    height: 150px;
    resize: none;
}

#form-status {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

@media (max-width: 768px) {
    .hero h2 { font-size: 2.5rem; }
    .card { width: 100%; }
}