/* Awardollar — Contact & FAQ pages */
body:has(.aw-page) {
    background: #070b14 !important;
}

.aw-page {
    color: #f1f5f9;
    padding-bottom: 80px;
}

.aw-page-hero {
    padding: 110px 0 50px;
    text-align: center;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(139, 92, 246, 0.18), transparent 70%);
}

.aw-page-hero .aw-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #22d3ee;
    margin-bottom: 12px;
}

.aw-page-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.aw-page-hero p {
    color: #94a3b8;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact */
.aw-contact-grid {
    margin-top: 40px;
}

.aw-info-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
}

.aw-info-card i {
    font-size: 22px;
    color: #22d3ee;
    margin-bottom: 14px;
}

.aw-info-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.aw-info-card p,
.aw-info-card a {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
}

.aw-info-card a:hover {
    color: #c4b5fd;
}

.aw-contact-form-wrap {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    padding: 32px;
}

.aw-contact-form-wrap .input-label {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.aw-contact-form-wrap .box-input,
.aw-contact-form-wrap textarea {
    width: 100%;
    background: #0b1220;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    color: #f1f5f9;
    padding: 12px 14px;
}

.aw-contact-form-wrap .box-input:focus,
.aw-contact-form-wrap textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.aw-contact-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
}

.aw-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.aw-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
    color: #fff;
}

/* FAQ */
.aw-faq-section {
    padding: 40px 0 20px;
}

.aw-faq-accordion .accordion-item {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.aw-faq-accordion .accordion-button {
    background: transparent;
    color: #f1f5f9;
    font-weight: 600;
    font-size: 15px;
    padding: 18px 20px;
    box-shadow: none !important;
}

.aw-faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(139, 92, 246, 0.12);
    color: #e9d5ff;
}

.aw-faq-accordion .accordion-button::after {
    filter: invert(1);
}

.aw-faq-accordion .accordion-body {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.75;
    padding: 0 20px 18px;
}

.aw-faq-cta {
    margin-top: 48px;
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.08);
}

.aw-faq-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.aw-faq-cta p {
    color: #94a3b8;
    margin-bottom: 18px;
}

.aw-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.aw-link-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Investment programs (schema) */
.aw-schema-intro {
    padding: 20px 0 50px;
}

.aw-schema-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.aw-schema-step {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 12px;
    padding: 18px;
    font-size: 14px;
    color: #94a3b8;
}

.aw-schema-step strong {
    display: block;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.aw-plans-grid {
    padding-bottom: 40px;
}

.aw-plan-card {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.aw-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.aw-plan-card.is-featured {
    border-color: rgba(139, 92, 246, 0.55);
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.12), rgba(15, 23, 42, 0.95));
}

.aw-plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #fff;
}

.aw-plan-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f1f5f9;
    padding-right: 70px;
}

.aw-plan-roi {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.aw-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.aw-plan-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    font-size: 13px;
}

.aw-plan-features li:last-child {
    border-bottom: none;
}

.aw-plan-features .label {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aw-plan-features .label i {
    color: #22d3ee;
    width: 16px;
}

.aw-plan-features .value {
    color: #f1f5f9;
    font-weight: 600;
    text-align: right;
}

.aw-plan-note {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.aw-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.aw-plan-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.aw-empty-plans {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

/* About */
.aw-about-block {
    padding: 50px 0;
}

.aw-about-visual {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
}

.aw-about-visual .aw-logo-large {
    max-width: 200px;
    margin-bottom: 24px;
}

.aw-about-visual ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aw-about-visual li {
    padding: 10px 0;
    color: #94a3b8;
    font-size: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.aw-about-visual li i {
    color: #22d3ee;
    margin-right: 10px;
}

.aw-about-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.aw-about-content p {
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 16px;
}

.aw-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.aw-value-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 14px;
    padding: 22px;
}

.aw-value-card i {
    font-size: 22px;
    color: #a78bfa;
    margin-bottom: 12px;
}

.aw-value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.aw-value-card p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

.aw-compliance-box {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-left: 4px solid #22d3ee;
    border-radius: 12px;
    padding: 22px 26px;
    margin: 40px 0;
}

.aw-compliance-box p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.aw-compliance-box strong {
    color: #e2e8f0;
}

.aw-bullet-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.aw-bullet-list li {
    padding: 8px 0;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.aw-bullet-list li i {
    color: #22d3ee;
    margin-right: 8px;
}

.aw-bullet-list strong {
    color: #e2e8f0;
}

/* Privacy policy */
.aw-policy-wrap {
    padding: 30px 0 70px;
}

.aw-policy-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 18px;
}

.aw-policy-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #e2e8f0;
}

.aw-policy-card p,
.aw-policy-card li {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.75;
}

.aw-policy-card ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.aw-policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.aw-policy-meta span {
    display: inline-block;
    padding: 8px 12px;
    font-size: 12px;
    color: #cbd5e1;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 999px;
}

/* How it works */
.aw-hiw-wrap {
    padding: 36px 0 60px;
}

.aw-timeline {
    position: relative;
    margin: 10px 0 42px;
}

.aw-timeline::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.7), rgba(34, 211, 238, 0.5));
}

.aw-timeline-item {
    position: relative;
    padding-left: 52px;
    margin-bottom: 24px;
}

.aw-timeline-dot {
    position: absolute;
    left: 8px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #8b5cf6;
    border: 3px solid rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.aw-timeline-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 14px;
    padding: 20px;
}

.aw-timeline-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.aw-timeline-card p {
    color: #94a3b8;
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.aw-timeline-card--referral {
    border-color: rgba(167, 139, 250, 0.35);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(15, 23, 42, 0.95));
}

.aw-timeline-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    color: #c4b5fd;
    text-decoration: none;
}

.aw-timeline-link:hover {
    color: #e9d5ff;
    text-decoration: underline;
}

/* How it works — referral guide */
.aw-hiw-referral {
    margin: 48px 0 56px;
    padding: 48px 0;
    border-radius: 24px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 92, 246, 0.14), transparent 65%),
        rgba(10, 15, 26, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.aw-hiw-referral__intro {
    max-width: 760px;
    margin: 0 auto 40px;
}

.aw-hiw-referral__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 14px;
    color: #f8fafc;
}

.aw-hiw-referral__lead {
    margin: 0;
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.75;
}

.aw-hiw-referral__block-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
}

.aw-hiw-referral__block-title i {
    color: #c4b5fd;
}

.aw-hiw-referral__steps {
    margin-bottom: 32px;
}

.aw-hiw-referral__olist {
    margin: 0;
    padding-left: 20px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

.aw-hiw-referral__olist li {
    margin-bottom: 14px;
}

.aw-hiw-referral__olist strong {
    display: block;
    color: #e2e8f0;
    margin-bottom: 4px;
}

.aw-hiw-referral__level-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aw-hiw-referral__level-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(7, 11, 20, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.aw-hiw-referral__level-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    color: #f5f3ff;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.aw-hiw-referral__level-row strong {
    color: #67e8f9;
    font-size: 1.05rem;
}

.aw-hiw-referral__level-row span {
    color: #e2e8f0;
    font-size: 14px;
}

.aw-hiw-referral__level-row p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.aw-hiw-referral__example {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.aw-hiw-referral__example-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.aw-hiw-referral__example-card {
    padding: 18px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.aw-hiw-referral__example-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #c4b5fd;
    margin-bottom: 8px;
}

.aw-hiw-referral__example-card p {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

.aw-hiw-referral__example-note {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    font-style: italic;
}

.aw-hiw-referral__faq {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.aw-hiw-referral__faq-item {
    padding: 16px 18px;
    height: 100%;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.aw-hiw-referral__faq-item h4 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #f1f5f9;
}

.aw-hiw-referral__faq-item p {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

.aw-hiw-referral__cta {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

body:has(.aw-page) .aw-hiw-referral .aw-ref-levels__panel {
    margin: 0;
}

@media (max-width: 991px) {
    .aw-hiw-referral__example-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .aw-hiw-referral {
        padding: 32px 16px;
        margin-left: -12px;
        margin-right: -12px;
        border-radius: 16px;
    }
}

/* Rankings */
.aw-ranking-wrap {
    padding: 36px 0 60px;
}

.aw-rank-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    padding: 22px;
    height: 100%;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.aw-rank-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.aw-rank-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.aw-rank-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aw-rank-icon img {
    max-width: 34px;
    max-height: 34px;
}

.aw-rank-card h3 {
    font-size: 1.05rem;
    margin: 0;
}

.aw-rank-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}
