/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #1a1a1a;
    --bg-card: #222222;
    --accent: #9b59b6;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #888888;
    --success-bg: rgba(46, 204, 113, 0.2);
    --success-border: #27ae60;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-gray);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 40px;
    /* Space for banner */
}

/* PROMO BANNER */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #8e44ad, #9b59b6);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* BIOS */
#bios-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    color: #bbb;
    font-family: 'Courier New', monospace;
    padding: 30px;
    z-index: 9999;
    font-size: 14px;
    line-height: 1.5;
    transition: opacity 0.8s ease-in-out;
}

/* Main */
.hidden {
    display: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
header {
    padding: 40px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.brand span {
    color: var(--accent);
}

.motto-bar {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 60px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.lang-switch {
    font-size: 0.9rem;
}

.lang-switch a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
    margin: 0 5px;
}

.lang-switch a.active {
    color: var(--accent);
}

.lang-switch span {
    color: #444;
}

/* Hero */
.hero {
    padding: 20px 0 80px;
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-white);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .availability {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent);
    background: rgba(155, 89, 182, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    font-weight: 300;
}

/* Services */
.services {
    padding: 40px 0;
}

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

.service-item h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.service-item p {
    color: var(--text-muted);
    font-size: 1rem;
    padding-left: 18px;
}

/* Pricing */
.pricing {
    margin: 60px 0;
    padding: 40px;
    background: #1f1f1f;
    border-radius: 8px;
    border: 1px solid #333;
}

.pricing h2 {
    color: var(--text-white);
    margin-bottom: 30px;
    text-align: center;
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.price-row:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: #ddd;
    flex: 1;
}

.price-val {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    width: 150px;
    text-align: right;
}

.price-desc {
    font-size: 0.85rem;
    color: #666;
    width: 200px;
    text-align: right;
    margin-left: 20px;
}

.fair-box {
    margin-top: 30px;
    padding: 20px;
    background: #2a2a2a;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    text-align: left;
}

.fair-box h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.fair-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Warnings */
.warning {
    margin: 80px 0;
    border: 1px solid #444;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    background: #1f1f1f;
}

.warning strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 5px;
}

/* Contact */
.contact {
    padding: 40px 0 100px;
    text-align: center;
}

.contact-card {
    background: #222;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-card h2 {
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-email a {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-white);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
}

.contact-phone a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    color: #888;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    background: #333;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    font-family: inherit;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    outline: none;
}

input:invalid {
    border-color: #552222;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    background: #333;
    border: 1px solid #444;
    border-radius: 4px;
}

.input-group .prefix {
    padding: 12px 15px;
    background: #2a2a2a;
    color: #888;
    border-right: 1px solid #444;
    font-family: monospace;
    font-size: 1rem;
}

.input-group input {
    border: none;
    background: transparent;
}

.input-group input:focus {
    outline: none;
}

.input-group:focus-within {
    border-color: var(--accent);
}

.btn-primary {
    display: block;
    width: 100%;
    background-color: var(--accent);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.btn-primary:hover {
    background-color: #8e44ad;
}

/* Success Box */
.success-box {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 30px;
    font-weight: 600;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.urgent-note {
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

footer {
    border-top: 1px solid #222;
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
    color: #444;
}

footer a {
    color: #555;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .price-val {
        text-align: left;
        width: 100%;
        margin-top: 5px;
    }

    .price-desc {
        text-align: left;
        width: 100%;
        margin: 0;
    }

    .promo-banner {
        font-size: 0.8rem;
    }
}