/* HERO */
.hero {
    background: var(--dark2);
    padding: 72px 40px 64px;
}
.hero-inner { max-width: 1280px; margin: 0 auto; }
.hero-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.hero h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 80px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #EEEEF0;
    line-height: 1;
    margin-bottom: 16px;
}
.hero h1 span { color: var(--y); }
.hero-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 480px; }

/* FAQ LAYOUT */
.faq-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 40px 80px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-sidebar { position: sticky; top: 80px; }
.faq-sidebar-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.3);
    margin-bottom: 16px;
}
.faq-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.faq-nav a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.faq-nav a:hover { background: var(--card); color: var(--black); }
.faq-nav a.active { background: var(--card); color: var(--black); font-weight: 600; }

.faq-contact-card { margin-top: 32px; background: var(--card); border-radius: 16px; padding: 24px; }
.faq-contact-card p { font-size: 13px; line-height: 1.65; color: rgba(0,0,0,0.5); margin-bottom: 16px; }
.faq-contact-card a {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--y);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}
.faq-contact-card a:hover { opacity: 0.7; }

.faq-group { margin-bottom: 56px; }
.faq-group-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 32px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--card);
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-group-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--y);
    flex-shrink: 0;
    position: relative;
    top: 2px;
}

.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    text-align: left;
}
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--black); line-height: 1.4; }
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--black);
    stroke-width: 2.2;
    stroke-linecap: round;
    fill: none;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-icon { background: var(--y); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p { font-size: 14px; line-height: 1.75; color: rgba(0,0,0,0.55); padding-bottom: 24px; max-width: 640px; }
.faq-answer-inner p + p { margin-top: -8px; }

/* CTA BAND */
.cta { background: var(--r); padding: 56px 40px; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 21px); pointer-events: none; }
.cta-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-inner h2 { font-family: 'Open Sans', sans-serif; font-weight: 800; font-style: italic; font-size: 40px; letter-spacing: -0.02em; text-transform: uppercase; color: var(--w); line-height: 1; margin-bottom: 6px; }
.cta-inner p { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-white { font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--w); color: var(--r); padding: 12px 28px; border-radius: 4px; text-decoration: none; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.9; }
.btn-outline-white { font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; background: transparent; color: var(--w); padding: 11px 28px; border-radius: 4px; border: 1.5px solid rgba(255,255,255,0.5); text-decoration: none; transition: border-color 0.2s; }
.btn-outline-white:hover { border-color: var(--w); }

@media (max-width: 768px) {
    .hero { padding: 48px 20px 40px; }
    .hero h1 { font-size: 48px; }
    .hero-desc { font-size: 13px; }
    .faq-wrap { grid-template-columns: 1fr; gap: 0; padding: 36px 20px 60px; }
    .faq-sidebar { position: static; margin-bottom: 36px; }
    .faq-contact-card { padding: 18px; }
    .cta { padding: 40px 20px; }
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .cta-inner h2 { font-size: 28px; }
    .cta-btns { flex-direction: column; width: 100%; }
    .btn-white, .btn-outline-white { text-align: center; padding: 14px 20px; }
}
