/* ═══════════════════════════════════════════════════════════
   ROSA V3 — GET STARTED PAGE CSS
   Style: Modern B2B SaaS Premium Creative
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO ──────────────────────────────────────────────── */
.gs-hero {
    padding: calc(var(--nav-height) + 64px) 0 48px;
    background: var(--bg-body);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gs-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 93, 37, 0.04) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.gs-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.25;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.gs-hero-sub {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ─── CONTACT FORM SECTION ──────────────────────────────── */
.form-section {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-xs);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    outline: none;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-size: 16px;
    background-position: right 16px center;
    background-repeat: no-repeat;
    padding-right: 48px;
}

/* ─── CONTACT CARDS ─────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--primary-glow);
    margin-bottom: var(--space-lg);
    font-size: 24px;
}

.contact-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.contact-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    font-size: var(--font-size-sm);
    flex-grow: 1;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* WhatsApp button styling */
.btn-whatsapp {
    background: #10B981;
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-whatsapp:hover {
    background: #059669;
    color: #fff;
}

.contact-hints {
    list-style: none;
    padding: 0;
    margin: var(--space-xl) 0 0;
    text-align: left;
    width: 100%;
}

.contact-hints li {
    padding: 6px 0;
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    padding-left: 18px;
}

.contact-hints li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--primary);
    font-weight: 700;
}

/* ─── FAQ accordion layout ──────────────────────────────── */
.gs-faq-list {
    max-width: 640px;
    margin: var(--space-2xl) auto 0;
}

.gs-faq-list .faq-item {
    border-bottom: 1px solid var(--border);
}

.gs-faq-list .faq-item summary {
    padding: var(--space-lg) 0;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}

.gs-faq-list .faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.gs-faq-list .faq-item[open] summary::after {
    content: "−";
    color: var(--primary);
}

.gs-faq-list .faq-item p {
    padding: 0 0 var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-sm);
}

/* ─── RESPONSIVE RULES ──────────────────────────────────── */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .form-card {
        padding: var(--space-xl) var(--space-lg);
    }
}

@media (max-width: 480px) {
    .gs-hero h1 {
        font-size: 1.8rem;
    }
}
