/* Wireframe CSS - Stil schematic pentru testare rapida */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: #f5f5f5;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border: 2px solid #333;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    border: 2px dashed #666;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1em;
    text-decoration: none;
    border: 2px solid #333;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn:hover {
    background: #333;
    color: white;
}

.btn-primary {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-large {
    padding: 25px 50px;
    font-size: 1.3em;
    font-weight: bold;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ea952;
}

.btn-tel {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
}

.btn-tel:hover {
    background: #0052a3;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.card {
    border: 2px solid #333;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    display: block;
}

.card:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.card p {
    color: #666;
}

/* Two Options Layout */
.two-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.option-box {
    border: 3px solid #333;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    display: block;
}

.option-box:hover {
    background: #e8f4ff;
    transform: scale(1.05);
}

.option-box h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Trust Ribbons */
.trust-ribbon {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    margin: 30px 0;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.3em;
    margin-bottom: 5px;
}

/* Hub Layout */
.hub-content {
    padding: 40px 0;
}

.hub-section {
    border: 2px dashed #999;
    padding: 30px;
    margin: 20px 0;
}

.hub-section h3 {
    margin-bottom: 15px;
}

.video-placeholder {
    background: #ddd;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #999;
    margin: 20px 0;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 10px;
    border-left: 3px solid #0066cc;
    margin: 10px 0;
    padding-left: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #333;
    font-size: 1em;
}

/* Navigation */
.nav-back {
    margin-bottom: 20px;
}

.nav-back a {
    color: #0066cc;
    text-decoration: none;
}

.nav-back a:hover {
    text-decoration: underline;
}

/* Contact Info */
.contact-info {
    background: #e8f4ff;
    border: 2px solid #0066cc;
    padding: 30px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-bottom: 15px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Flow indicator */
.flow-indicator {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.flow-indicator strong {
    color: #856404;
}

/* Responsive */
@media (max-width: 768px) {
    .two-options {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
    }
}
