body {
    background: #f6f8fa;
    color: #24292f;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 1.25rem;
}

.container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    max-width: 860px;
    width: 100%;
}

.page-home .container {
    text-align: center;
}

.logo {
    font-weight: 600;
    color: #0969da;
    letter-spacing: -0.6px;
}

.page-home .logo {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.page-legal .logo {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #57606a;
    margin-bottom: 1.5rem;
}

.details {
    font-size: 1rem;
    color: #24292f;
    margin-bottom: 2rem;
}

.hero-points {
    margin: -1rem auto 1.25rem auto;
    padding: 0;
    list-style: none;
    max-width: 720px;
    color: #24292f;
    text-align: left;
}

.hero-points li {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    padding: 0.25rem 0;
}

.hero-points li::before {
    content: "•";
    color: #0969da;
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: left;
    margin-top: 2rem;
}

.section {
    border-radius: 12px;
    padding: 1.25rem;
    background: #f6f8fa;
}

.section h2 {
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #24292f;
}

.section p {
    margin: 0.5rem 0;
    color: #57606a;
    line-height: 1.55;
}

.section ul {
    margin: 0.75rem 0 0 1.1rem;
    padding: 0;
    color: #24292f;
    line-height: 1.6;
}

.tabs {
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem;
}

.tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    background: #f6f8fa;
    border-radius: 10px;
    padding: 0.25rem;
}

.tab-button {
    appearance: none;
    border: 0;
    background: transparent;
    color: #57606a;
    font-weight: 600;
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.tab-button.is-active {
    background: #0969da;
    color: #fff;
}

.tab-button:focus {
    outline: 2px solid rgba(9,105,218,0.35);
    outline-offset: 2px;
}

.tab-panels {
    margin-top: 0.75rem;
}

.tab-panel {
    background: #f6f8fa;
    border-radius: 12px;
    padding: 1rem;
}

.cta-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 1.25rem 0 0 0;
}

.btn {
    display: inline-block;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-primary {
    background: #0969da;
    color: #fff;
}

.btn-primary:hover {
    text-decoration: none;
}

.btn-secondary {
    background: #fff;
    color: #0969da;
    border-color: rgba(0,0,0,0.14);
}

.btn-secondary:hover {
    text-decoration: none;
}

.pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.price-card {
    border-radius: 12px;
    padding: 1.25rem;
    background: #f6f8fa;
}

.price-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.price-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #24292f;
}

.price-amount {
    font-size: 1.05rem;
    font-weight: 600;
    color: #24292f;
}

.plan-cta {
    margin-top: 0.9rem;
}

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

.muted {
    color: #57606a;
}

h1 {
    margin: 0.5rem 0 1.25rem 0;
    font-size: 1.6rem;
    letter-spacing: -0.6px;
}

p, li {
    color: #57606a;
    line-height: 1.6;
}

a {
    color: #0969da;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    margin-top: 2rem;
    color: #57606a;
    font-size: 0.95rem;
    text-align: center;
    max-width: 860px;
    width: 100%;
}

.page-legal .footer {
    margin-top: 1.25rem;
}

.footer-links {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ Accordion */
.faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.25rem;
    font-weight: 600;
    color: #24292f;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.15s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 400;
    color: #57606a;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item summary:hover {
    color: #0969da;
}

.faq-answer {
    padding: 0 0.25rem 1rem 0.25rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}
