body {
    line-height: 1.7;
}

.hero {
    padding: 170px 0 40px;
}

.hero-wrap,
.content-wrap,
.footer-wrap {
    width: min(1240px, calc(100% - 10%));
    margin: 0 auto;
}

.accordion-card,
.footer-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glow);
}

.hero-content {
    padding: 8px 4px 0;
}

.eyebrow {
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy {
    max-width: 760px;
    color: #d0dbeb;
    font-size: 1rem;
}

.content-wrap {
    padding: 28px 0 110px;
}

.accordion-list {
    display: grid;
    gap: 18px;
}

.accordion-card {
    border-radius: 24px;
    overflow: hidden;
}

.accordion-card.active {
    border-color: rgba(0, 240, 255, 0.26);
    background: var(--bg-panel-strong);
}

.accordion-trigger {
    width: 100%;
    padding: 24px 28px;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
}

.accordion-head {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-box {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.accordion-chevron {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.25s ease;
}

.accordion-card.active .accordion-chevron {
    transform: rotate(180deg);
    color: var(--primary-cyan);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 28px;
    color: #d5dfef;
    font-size: 0.95rem;
    line-height: 1.8;
    transition: max-height 0.45s ease, opacity 0.3s ease, padding 0.35s ease;
}

.accordion-card.active .accordion-content {
    max-height: 2400px;
    opacity: 1;
    padding: 0 28px 28px;
}

.accordion-content p + p,
.accordion-content p + ul,
.accordion-content ul + p,
.accordion-content h4 + p,
.accordion-content h4 + ul,
.accordion-content ul + div,
.accordion-content p + div {
    margin-top: 14px;
}

.accordion-content h4 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
}

.legal-list {
    list-style: none;
}

.legal-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 18px;
    color: #d5dfef;
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-cyan);
    font-weight: 700;
}

.inline-panel {
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.inline-panel-subtle {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-note {
    font-size: 0.85rem;
    color: #d8b4fe;
    font-style: italic;
}

.contact-pill {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.18);
    color: #baf9ff;
    font-weight: 600;
}

.two-column-list {
    columns: 2;
    column-gap: 28px;
}

.footer-wrap {
    padding: 0 0 40px;
}

.footer-card {
    padding: 28px;
    border-radius: 28px;
}

.footer-copy {
    text-align: center;
    color: var(--text-muted);
}

.footer-copy strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .hero {
        padding-top: 140px;
    }
}

@media (max-width: 700px) {
    .two-column-list {
        columns: 1;
    }
}
