.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #00ccdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.header .subtitle {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 2rem;
}

.price-info {
    display: inline-flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    margin-top: 1rem;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #00ccdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 3rem 0;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00ff88, #00ccdd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    border-color: #00ff88;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

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

.card-step {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00ff88, #00ccdd);
    color: #000000;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #00ff88, #00ccdd);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

/* Status Check Form */
.status-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.status-input {
    flex: 1;
    min-width: 200px;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.status-input:focus {
    outline: none;
    border-color: #00ff88;
    background: rgba(255, 255, 255, 0.08);
}

.status-input::placeholder {
    color: #666;
}

/* How It Works */
.how-it-works {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00ff88, #00ccdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00ccdd);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-content p {
    color: #cccccc;
    line-height: 1.7;
}

/* Benefits */
.benefits {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00ff88, #00ccdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.benefit-card p {
    color: #888;
    font-size: 0.95rem;
}

/* FAQ */
.faq {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00ff88, #00ccdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

details:hover {
    border-color: rgba(0, 255, 136, 0.3);
}

details[open] {
    background: rgba(255, 255, 255, 0.08);
    border-color: #00ff88;
}

summary {
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.1rem;
    list-style: none;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::before {
    content: '▶';
    display: inline-block;
    margin-right: 0.75rem;
    color: #00ff88;
    transition: transform 0.3s ease;
}

details[open] summary::before {
    transform: rotate(90deg);
}

details p {
    margin-top: 1rem;
    color: #cccccc;
    line-height: 1.7;
    padding-left: 1.5rem;
}

/* Footer Contact */
.footer-contact {
    text-align: center;
    padding: 2rem;
    color: #888;
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact strong {
    color: #00ff88;
}

.footer-contact a {
    color: #00ccdd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #00ff88;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #888;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.2);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* 💻 Для десктопів */
@media (min-width: 768px) {
    body {
        padding: 80px;
        padding-top: 100px; /* Більший відступ для navbar */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .header .subtitle {
        font-size: 1.1rem;
    }

    .price-info {
        flex-direction: column;
        gap: 1rem;
    }

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

    .status-form {
        flex-direction: column;
    }

    .status-input {
        width: 100%;
    }

    .how-it-works,
    .faq {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

/* Selection */
::selection {
    background: rgba(0, 255, 136, 0.3);
    color: #ffffff;
}