﻿
:root {
    scroll-behavior: smooth;
    --primary-color: #4154f1;
    --white-color: white;
    --dark-neutral: #1f2937;
    --light-neutral: #f1f5f9;
    --white: #ffffff;
    --success-green: #10b981;
    --error-red: #ef4444;
    --muted: #475569;
}

main#main {
    margin-top: 3rem;
}

/* Compact paddings (match other pages) */
.section-pad {
    padding: 30px 0;
}

.py-5 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.py-4 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

/* Hero */
.oa-hero {
    background: linear-gradient(135deg,var(--light-neutral),#e7ecf7);
}

    .oa-hero h1 {
        color: var(--dark-neutral);
        font-weight: 600;
        letter-spacing: -.02em;
        font-size: 2.0rem;
        margin-bottom: .25rem;
    }

    .oa-hero p.lead {
        color: #475569;
        font-size: .9rem;
        margin-bottom: .75rem;
    }

/* CTA (global, compact) */
.cta {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: 8px 10px;
    border-radius: 12px;
    line-height: 1;
    font-weight: 300;
    background: var(--primary-color);
    color: var(--white);
    border: 0;
    text-decoration: none;
    transition: transform .2s ease,opacity .2s ease;
    font-size: .9rem;
}

    .cta.alt {
        background: #1f2937;
    }

    .cta:hover {
        transform: translateY(-1px);
        opacity: .92;
        color: var(--white);
    }

/* Utility band */
.info-band {
    background: linear-gradient(135deg,rgba(65,84,241,.08),rgba(65,84,241,.02));
    border: 1px dashed rgba(65,84,241,.25);
    border-radius: 14px;
    padding: 12px 14px;
    color: #334155;
    font-size: .9rem;
}

/* Label + orb */
.label {
    display: inline-flex;
    align-items: center;
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(65,84,241,.08);
    border: 1px solid rgba(65,84,241,.15);
    padding: 4px 10px;
    border-radius: 999px;
}

.orb {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

    .orb::before {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 18px;
        background: radial-gradient(60% 60% at 30% 30%,rgba(65,84,241,.18),rgba(65,84,241,0));
    }

    .orb i {
        position: relative;
        font-size: 20px;
        color: var(--primary-color);
    }

/* Headings & body text */
.section-title {
    color: var(--dark-neutral);
    font-weight: 600;
    letter-spacing: -.02em;
    margin: .5rem 0 .35rem;
    font-size: 1.75rem;
}

.sub {
    color: var(--muted);
    max-width: 65ch;
    font-size: .95rem;
}

/* Grid helpers */
.grid {
    display: grid;
    gap: 1rem;
}

.grid-12 {
    grid-template-columns: repeat(12,1fr);
}

.span-12 {
    grid-column: span 12;
}

.span-md-6, .span-lg-4, .span-lg-6 {
    grid-column: span 12;
}

@media (min-width:768px) {
    .span-md-6 {
        grid-column: span 6;
    }
}

@media (min-width:992px) {
    .span-lg-4 {
        grid-column: span 4;
    }

    .span-lg-6 {
        grid-column: span 6;
    }
}

/* Cards */
.cardx {
    position: relative;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    height: 100%;
    transition: transform .25s ease;
}

    .cardx::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        padding: 1px;
        background: linear-gradient(135deg,rgba(65,84,241,.25),rgba(65,84,241,0));
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .cardx:hover {
        transform: translateY(-3px);
    }

.cardx-body {
    padding: 14px;
}

.cardx-title {
    color: var(--dark-neutral);
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: .25rem;
}

.cardx-desc {
    color: #475569;
    margin-bottom: .5rem;
}

.iconx {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(65,84,241,.08);
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 8px;
}

/* Simple list */
.listx {
    margin: 0 0 8px;
    padding-left: 1.1rem;
    color: #334155;
    font-size: .9rem;
}

    .listx li {
        margin: 6px 0;
    }

/* Chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.chip {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .85rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #334155;
}

/* Accordion (FAQs) spacing tweak */
.accordion-button {
    font-size: .95rem;
}

.accordion-body.sub {
    font-size: .95rem;
}

/* Misc */
ul {
    padding: 0 !important;
}

@media (max-width:991.98px) {
    .oa-hero h1 {
        font-size: 1.6rem;
    }
}

@media (prefers-reduced-motion:reduce) {
    .cta {
        transition: none;
    }

    [data-aos] {
        transition: none !important;
        transform: none !important;
    }
}
