/* Disclaimer Banner */
.disclaimer-banner {
    background-color: #fef3c7;
    border-bottom: 2px solid #f59e0b;
    padding: 12px 20px;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
    color: #92400e;
}

.disclaimer-banner p {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-banner strong {
    color: #78350f;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #334155;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tagline {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-phone, .btn-email {
    display: inline-block;
    padding: 14px 28px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-phone:hover, .btn-email:hover {
    background: #2563eb;
}

.divider {
    color: #64748b;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.service {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
}

.service h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service .price {
    font-size: 32px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.service p:last-child {
    color: #94a3b8;
    font-size: 14px;
}

/* Form */
.form-section {
    background: #1e293b;
    padding: 40px;
    border-radius: 12px;
    margin: 20px 0;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

input, select {
    width: 100%;
    padding: 14px 16px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #f8fafc;
    font-size: 15px;
    font-family: inherit;
}

input::placeholder {
    color: #64748b;
}

input:focus, select:focus {
    outline: none;
    border-color: #3b82f6;
}

select {
    margin-bottom: 15px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2563eb;
}

.success {
    text-align: center;
    padding: 30px;
    color: #4ade80;
    font-size: 18px;
}

/* FAQ */
.faq-preview {
    padding: 40px 0;
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
}

.faq-item {
    background: #1e293b;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #334155;
}

.faq-item strong {
    display: block;
    margin-bottom: 8px;
    color: #f8fafc;
}

.faq-item p {
    color: #94a3b8;
    font-size: 14px;
}

/* Footer */
footer {
    border-top: 1px solid #334155;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact a {
    color: #3b82f6;
    text-decoration: none;
}

.disclaimer-short {
    background: #1e293b;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.disclaimer-short p {
    color: #94a3b8;
    font-size: 12px;
}

.copyright {
    color: #64748b;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 16px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 25px;
    }

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

    .divider {
        display: none;
    }
}
