/* ============================================
   AQR Full Page Layout - Header, Footer, Nav
   ============================================ */

/* --- Header --- */
.aqr-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
}

.admin-bar .aqr-header {
    top: 32px;
}

.aqr-header__logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aqr-header__logo span {
    color: #c49b5c;
}

.aqr-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aqr-header__nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    text-transform: uppercase;
}

.aqr-header__nav a:hover {
    color: #fff;
}

.aqr-header__nav .aqr-nav-cta {
    background: #c49b5c;
    color: #141414 !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.aqr-header__nav .aqr-nav-cta:hover {
    background: #d4ab6c;
}

.aqr-header__toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 4px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.aqr-header__toggle:focus,
.aqr-header__toggle:active {
    background: none;
    outline: none;
}

/* --- Main Content Offset for Fixed Header --- */
.aqr-page-content {
    padding-top: 70px;
}

.admin-bar .aqr-page-content {
    padding-top: 102px;
}

/* --- Footer --- */
.aqr-footer {
    background: #0a0a0a;
    border-top: 1px solid #1f1f1f;
    padding: 60px 40px 30px;
}

.aqr-footer__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.aqr-footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.aqr-footer__logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

.aqr-footer__brand h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.aqr-footer__brand h3 span {
    color: #c49b5c;
}

.aqr-footer__brand p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.aqr-footer__social {
    display: flex;
    gap: 12px;
}

.aqr-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #888;
    transition: color 0.2s, background 0.2s;
}

.aqr-social-link:hover {
    color: #c49b5c;
    background: rgba(196, 155, 92, 0.12);
}

.aqr-footer__col h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
}

.aqr-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aqr-footer__col li {
    margin-bottom: 10px;
}

.aqr-footer__col a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.aqr-footer__col a:hover {
    color: #c49b5c;
}

.aqr-footer__bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #1f1f1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aqr-footer__bottom p {
    color: #555;
    font-size: 13px;
    margin: 0;
}

.aqr-footer__bottom a {
    color: #c49b5c;
    text-decoration: none;
}

/* --- Hero Section --- */
.aqr-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #141414 0%, #1a1a2e 50%, #141414 100%);
}

.aqr-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 155, 92, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(100, 100, 200, 0.05) 0%, transparent 50%);
    animation: aqrHeroGlow 8s ease-in-out infinite alternate;
}

@keyframes aqrHeroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-5%, 3%); }
}

.aqr-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
}

.aqr-hero__badge {
    display: inline-block;
    background: rgba(196, 155, 92, 0.15);
    color: #c49b5c;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(196, 155, 92, 0.2);
}

.aqr-hero__title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.aqr-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #c49b5c, #e8c888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aqr-hero__subtitle {
    font-size: 20px;
    color: #aaa;
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.aqr-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.aqr-hero__btn {
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.aqr-hero__btn--primary {
    background: #c49b5c;
    color: #141414;
}

.aqr-hero__btn--primary:hover {
    background: #d4ab6c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 155, 92, 0.3);
}

.aqr-hero__btn--secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.aqr-hero__btn--secondary:hover {
    background: rgba(255,255,255,0.12);
}

/* --- Features Section --- */
.aqr-features {
    padding: 100px 40px;
    background: #141414;
}

.aqr-features__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.aqr-feature-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.aqr-feature-card:hover {
    transform: translateY(-4px);
    border-color: #c49b5c;
}

.aqr-feature-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(196, 155, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.aqr-feature-card__title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
}

.aqr-feature-card__desc {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* --- How It Works Section --- */
.aqr-how-it-works {
    padding: 100px 40px;
    background: #0f0f0f;
}

.aqr-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.aqr-section-header__label {
    color: #c49b5c;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.aqr-section-header__title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.aqr-steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.aqr-step-card {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.aqr-step-card__number {
    width: 48px;
    height: 48px;
    background: #c49b5c;
    color: #141414;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.aqr-step-card__title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}

.aqr-step-card__desc {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* --- CTA Section --- */
.aqr-cta-section {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #141414 100%);
    position: relative;
}

.aqr-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196, 155, 92, 0.06) 0%, transparent 60%);
}

.aqr-cta-section__content {
    position: relative;
    z-index: 1;
}

.aqr-cta-section__title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px;
}

.aqr-cta-section__subtitle {
    color: #aaa;
    font-size: 18px;
    margin: 0 0 32px;
}

/* --- Contact Section --- */
.aqr-contact {
    padding: 80px 40px;
    background: #141414;
}

.aqr-contact__grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.aqr-contact__info h2 {
    color: #fff;
    font-size: 32px;
    margin: 0 0 16px;
}

.aqr-contact__info p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.aqr-contact__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #ccc;
    font-size: 15px;
}

.aqr-contact__item-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 155, 92, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.aqr-contact__form {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 32px;
}

.aqr-contact__form .aqr-form-group {
    margin-bottom: 16px;
}

.aqr-contact__form textarea {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #e5e5e5;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    outline: none;
    transition: border-color 0.2s;
}

.aqr-contact__form textarea:focus {
    border-color: #c49b5c;
}

/* --- Generic Page Content (Legal pages, etc.) --- */
.aqr-page-content > h1,
.aqr-page-content > h2,
.aqr-page-content > h3,
.aqr-page-content > h4,
.aqr-page-content > h5,
.aqr-page-content > h6,
.aqr-page-content > p,
.aqr-page-content > ul,
.aqr-page-content > ol,
.aqr-page-content > blockquote,
.aqr-page-content > table,
.aqr-page-content > .wp-block-heading,
.aqr-page-content > .wp-block-paragraph,
.aqr-page-content > .wp-block-list {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.aqr-page-content > h1:first-child,
.aqr-page-content > h2:first-of-type {
    padding-top: 40px;
}

.aqr-page-content > h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.aqr-page-content > h2 {
    color: #e5e5e5;
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.aqr-page-content > h3 {
    color: #ddd;
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.aqr-page-content > p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.aqr-page-content > ul,
.aqr-page-content > ol {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 40px;
    margin-bottom: 16px;
}

.aqr-page-content > ul li,
.aqr-page-content > ol li {
    margin-bottom: 6px;
}

.aqr-page-content > strong,
.aqr-page-content p strong {
    color: #ddd;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .aqr-header {
        padding: 0 10px;
        height: 44px;
    }

    .aqr-header__logo {
        font-size: 13px;
        gap: 4px;
    }

    .aqr-header__nav {
        display: flex;
        gap: 6px;
    }

    .aqr-header__nav a {
        font-size: 8px;
        letter-spacing: 0;
    }

    .aqr-header__nav .aqr-nav-cta {
        padding: 3px 7px;
        font-size: 8px;
        border-radius: 4px;
    }

    .aqr-header__toggle {
        display: none;
    }

    .aqr-header > nav {
        position: static;
        top: auto;
        left: auto;
        right: 0;
        z-index: 9998;
    }

    .aqr-page-content {
        padding-top: 44px;
    }

    .aqr-hero__title {
        font-size: 28px;
    }

    .aqr-hero__subtitle {
        font-size: 14px;
    }

    .aqr-section-header {
        margin-bottom: 30px;
    }

    .aqr-section-header__label {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }

    .aqr-section-header__title {
        font-size: 22px;
    }

    .aqr-features {
        padding: 40px 16px;
    }

    .aqr-how-it-works {
        padding: 40px 16px;
    }

    .aqr-features__grid {
        grid-template-columns: 1fr;
    }

    .aqr-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aqr-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .aqr-contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    /* Hero */
    .aqr-hero {
        min-height: auto;
        padding: 40px 0 30px;
    }

    .aqr-hero__content {
        padding: 16px 16px;
    }

    .aqr-hero__badge {
        font-size: 9px;
        padding: 4px 10px;
        margin-bottom: 14px;
    }

    .aqr-hero__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .aqr-hero__subtitle {
        font-size: 11px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .aqr-hero__btn {
        padding: 8px 16px;
        font-size: 10px;
        border-radius: 6px;
    }

    .aqr-hero__actions {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }

    /* Features */
    .aqr-features {
        padding: 30px 12px;
    }

    .aqr-features__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .aqr-feature-card {
        padding: 16px 10px;
        border-radius: 10px;
    }

    .aqr-feature-card__icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .aqr-feature-card__title {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .aqr-feature-card__desc {
        font-size: 9px;
        line-height: 1.4;
    }

    /* How It Works */
    .aqr-how-it-works {
        padding: 30px 12px;
    }

    .aqr-steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .aqr-step-card {
        padding: 12px 6px;
    }

    .aqr-step-card__number {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-bottom: 8px;
    }

    .aqr-step-card__title {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .aqr-step-card__desc {
        font-size: 8px;
        line-height: 1.3;
    }

    /* CTA */
    .aqr-cta-section {
        padding: 30px 16px;
    }

    .aqr-cta-section__title {
        font-size: 18px;
    }

    .aqr-cta-section__subtitle {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .aqr-cta-section .aqr-hero__btn {
        padding: 8px 16px;
        font-size: 10px;
        border-radius: 6px;
    }

    /* Contact */
    .aqr-contact {
        padding: 30px 12px;
    }

    .aqr-contact__info h2 {
        font-size: 20px;
    }

    .aqr-contact__info p {
        font-size: 12px;
    }

    .aqr-contact__item {
        font-size: 11px;
    }

    .aqr-contact__form {
        padding: 16px;
    }

    /* Footer */
    .aqr-footer {
        padding: 24px 12px 16px;
    }

    .aqr-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 12px;
    }

    .aqr-footer__brand h3 {
        font-size: 14px;
    }

    .aqr-footer__brand p {
        font-size: 10px;
    }

    .aqr-social-link {
        width: 28px;
        height: 28px;
    }

    .aqr-footer__col h4 {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .aqr-footer__col a {
        font-size: 10px;
    }

    .aqr-footer__col li {
        margin-bottom: 4px;
    }

    .aqr-footer__bottom p {
        font-size: 9px;
    }
}
