/**
 * ============================================================
 * AdVentureSphere Web — Design Components
 * build/adventuresphere/assets/css/cabsphereweb.css
 * ============================================================
 * Loaded on all AVS Web pages via $additionalCSS = ['cabsphereweb']
 * Depends on: avs-global.css (design tokens must be loaded first)
 * Contains: avsweb-navbar (standalone), avsweb-footer, page components
 * ============================================================
 */

/* ============================================================
   AVSWEB NAVBAR — STANDALONE (same pattern as AVS / B4S)
   ============================================================ */

.avsweb-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 71, 171, 0.25);
    height: 70px;
    display: flex;
    align-items: center;
}

.avsweb-nav-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.avsweb-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.avsweb-nav-brand:hover { opacity: 0.8; }
.avsweb-nav-brand-logo { width: 36px; height: 36px; display: block; }
.avsweb-nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.avsweb-nav-brand-name {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    text-transform: uppercase;
}

.avsweb-nav-brand-accent { color: var(--avs-gold); }

.avsweb-nav-brand-tagline {
    font-size: 0.6rem;
    color: var(--avs-text-dim);
    letter-spacing: 0.05em;
}

.avsweb-nav-separator {
    width: 1px;
    height: 32px;
    background: var(--avs-border);
    flex-shrink: 0;
}

.avsweb-nav-product {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
}

.avsweb-nav-product-brand {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 0.75rem;
    transition: color 0.2s ease;
}

.avsweb-nav-product-brand:hover { color: var(--avs-gold); }

.avsweb-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.avsweb-nav-link {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--avs-text-muted);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    display: block;
}

.avsweb-nav-link:hover,
.avsweb-nav-link.avsweb-active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.avsweb-has-dropdown { position: relative; list-style: none; }

.avsweb-nav-dropdown-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--avs-text-muted);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    line-height: 1.6;
}

.avsweb-nav-dropdown-btn:hover,
.avsweb-has-dropdown.avsweb-open .avsweb-nav-dropdown-btn {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.avsweb-nav-dropdown-btn i {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
}

.avsweb-has-dropdown.avsweb-open .avsweb-nav-dropdown-btn i { transform: rotate(180deg); }

.avsweb-nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--avs-card);
    border: 1px solid var(--avs-border);
    border-radius: var(--radius-md);
    padding: 8px 0 0.4rem;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    list-style: none;
}

.avsweb-has-dropdown:hover .avsweb-nav-dropdown-menu,
.avsweb-has-dropdown:focus-within .avsweb-nav-dropdown-menu,
.avsweb-has-dropdown.avsweb-open .avsweb-nav-dropdown-menu { display: block; }

.avsweb-has-dropdown:hover .avsweb-nav-dropdown-btn { color: var(--white); }

.avsweb-nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    color: var(--avs-text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.avsweb-nav-dropdown-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.avsweb-nav-dropdown-item i {
    font-size: 0.78rem;
    color: var(--avs-text-dim);
    width: 16px;
    text-align: center;
}

.avsweb-dot--live { color: var(--avs-success); }

.avsweb-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
}

.avsweb-nav-cta-btn {
    background: var(--avs-gold);
    color: #0A0A0A;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.55rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1;
}

.avsweb-nav-cta-btn:hover {
    background: #e6c200;
    color: #0A0A0A;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}

.avsweb-nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}

.avsweb-nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--avs-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.avsweb-nav-hamburger.avsweb-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.avsweb-nav-hamburger.avsweb-open span:nth-child(2) { opacity: 0; }
.avsweb-nav-hamburger.avsweb-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
    .avsweb-nav-separator { display: none; }
    .avsweb-nav-hamburger { display: flex; }

    .avsweb-nav-product {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--avs-surface);
        border-top: 1px solid var(--avs-border);
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    .avsweb-nav-product.avsweb-mobile-open { display: flex; }
    .avsweb-nav-product-brand { font-size: 1.1rem; margin-bottom: 1rem; margin-right: 0; }

    .avsweb-nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .avsweb-nav-link {
        width: 100%;
        padding: 0.85rem 0.5rem;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--avs-border);
    }

    .avsweb-has-dropdown .avsweb-nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.03);
        padding-left: 1rem;
        min-width: auto;
        width: 100%;
    }

    .avsweb-nav-dropdown-btn {
        width: 100%;
        padding: 0.85rem 0.5rem;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--avs-border);
        justify-content: space-between;
    }

    .avsweb-nav-actions {
        width: 100%;
        padding-top: 1.25rem;
        border-top: 1px solid var(--avs-border);
        margin-top: 0.5rem;
        flex-wrap: wrap;
        margin-left: 0;
    }
}

/* ============================================================
   HERO
   ============================================================ */
.avsweb-hero {
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.avsweb-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 71, 171, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.avsweb-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--avs-gold);
    background: var(--avs-gold-muted);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-pill);
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
}

.avsweb-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin: 0 auto 1.25rem;
    max-width: 700px;
}

.avsweb-hero-title span {
    color: var(--avs-gold);
}

.avsweb-hero-sub {
    font-size: 1.1rem;
    color: var(--avs-text-muted);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.avsweb-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   TRACK OVERVIEW (3 customer tracks)
   ============================================================ */
.avsweb-tracks-section {
    padding: 4rem 0;
    border-top: 1px solid var(--avs-border);
}

.avsweb-section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--avs-text-dim);
    margin-bottom: 0.5rem;
}

.avsweb-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.avsweb-section-sub {
    font-size: 1rem;
    color: var(--avs-text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.avsweb-track-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.avsweb-track-card {
    background: var(--avs-card);
    border: 1px solid var(--avs-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    text-decoration: none;
    display: block;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.avsweb-track-card:hover {
    border-color: var(--avs-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.avsweb-track-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.avsweb-track-icon--gold  { background: var(--avs-gold-muted); color: var(--avs-gold); }
.avsweb-track-icon--blue  { background: rgba(0, 71, 171, 0.2); color: var(--avs-blue-light); }
.avsweb-track-icon--teal  { background: var(--avs-teal-muted); color: var(--avs-teal); }

.avsweb-track-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.avsweb-track-desc {
    font-size: 0.9rem;
    color: var(--avs-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.avsweb-track-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--avs-blue-light);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* ============================================================
   TIER GRID (all 5 tiers)
   ============================================================ */
.avsweb-tiers-section {
    padding: 4rem 0;
    border-top: 1px solid var(--avs-border);
}

.avsweb-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.avsweb-tier-card {
    background: var(--avs-card);
    border: 1px solid var(--avs-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.avsweb-tier-card--live {
    border-color: rgba(0, 71, 171, 0.4);
}

.avsweb-tier-card--live:hover {
    border-color: var(--avs-gold);
    box-shadow: var(--shadow-gold);
}

.avsweb-tier-card--soon {
    opacity: 0.8;
}

.avsweb-tier-card--soon:hover {
    border-color: var(--avs-border-light);
}

.avsweb-tier-number {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--avs-text-dim);
    margin-bottom: 0.5rem;
}

.avsweb-tier-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.avsweb-tier-tagline {
    font-size: 0.88rem;
    color: var(--avs-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.avsweb-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.75rem;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.avsweb-tier-badge--live {
    background: rgba(16, 185, 129, 0.15);
    color: var(--avs-success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.avsweb-tier-badge--soon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--avs-warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.avsweb-tier-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--avs-border);
}

.avsweb-tier-price-setup {
    font-size: 0.78rem;
    color: var(--avs-text-dim);
    margin-bottom: 0.2rem;
}

.avsweb-tier-price-amount {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.avsweb-tier-price-monthly {
    font-size: 0.82rem;
    color: var(--avs-text-muted);
}

.avsweb-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.avsweb-tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--avs-text-muted);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(36, 48, 80, 0.5);
}

.avsweb-tier-features li:last-child {
    border-bottom: none;
}

.avsweb-tier-features li i {
    color: var(--avs-success);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.avsweb-tier-features li i.fa-clock {
    color: var(--avs-warning);
}

/* ============================================================
   EVENT & PERSONAL PACKAGES
   ============================================================ */
.avsweb-packages-section {
    padding: 4rem 0;
    border-top: 1px solid var(--avs-border);
}

.avsweb-pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.avsweb-pkg-card {
    background: var(--avs-card);
    border: 1px solid var(--avs-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.avsweb-pkg-card:hover {
    border-color: var(--avs-gold);
    box-shadow: var(--shadow-gold);
}

.avsweb-pkg-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--avs-gold-muted);
    color: var(--avs-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.avsweb-pkg-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.avsweb-pkg-active-period {
    font-size: 0.78rem;
    color: var(--avs-teal);
    font-family: var(--font-mono);
    margin-bottom: 0.75rem;
}

.avsweb-pkg-desc {
    font-size: 0.9rem;
    color: var(--avs-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.avsweb-pkg-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--avs-gold);
    margin-bottom: 1.25rem;
}

.avsweb-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.avsweb-pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--avs-text-muted);
    padding: 0.3rem 0;
}

.avsweb-pkg-features li i {
    color: var(--avs-gold);
    font-size: 0.72rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* ============================================================
   QUOTE / WAITLIST FORM
   ============================================================ */
.avsweb-quote-section {
    padding: 4rem 0;
}

.avsweb-quote-wrap {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
}

.avsweb-quote-info-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.avsweb-quote-info-desc {
    font-size: 1rem;
    color: var(--avs-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.avsweb-quote-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.avsweb-quote-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--avs-text-muted);
    line-height: 1.5;
}

.avsweb-quote-points li i {
    color: var(--avs-gold);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.avsweb-quote-form-card {
    background: var(--avs-card);
    border: 1px solid var(--avs-border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.avsweb-quote-form-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.avsweb-form-group {
    margin-bottom: 1.25rem;
}

.avsweb-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--avs-text);
    margin-bottom: 0.4rem;
}

.avsweb-form-note {
    font-size: 0.78rem;
    color: var(--avs-text-dim);
    margin-top: 1.25rem;
    line-height: 1.5;
}

/* ============================================================
   POST-REGISTRATION UPSELL BLOCK (on thank-you.php)
   ============================================================ */
.avsweb-upsell {
    background: linear-gradient(135deg, var(--avs-card) 0%, rgba(0, 71, 171, 0.15) 100%);
    border: 1px solid rgba(0, 71, 171, 0.4);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.avsweb-upsell-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--avs-gold);
    margin-bottom: 0.75rem;
}

.avsweb-upsell-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.avsweb-upsell-sub {
    font-size: 0.92rem;
    color: var(--avs-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.avsweb-upsell-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.avsweb-upsell-option {
    background: var(--avs-surface);
    border: 1px solid var(--avs-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    text-align: left;
    min-width: 180px;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: block;
}

.avsweb-upsell-option:hover {
    border-color: var(--avs-gold);
    box-shadow: var(--shadow-gold);
    text-decoration: none;
}

.avsweb-upsell-option-label {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--avs-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.avsweb-upsell-option-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.avsweb-upsell-option-price {
    font-size: 0.78rem;
    color: var(--avs-text-muted);
}

.avsweb-upsell-dismiss {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--avs-text-dim);
    text-decoration: underline;
    padding: 0;
}

.avsweb-upsell-dismiss:hover {
    color: var(--avs-text-muted);
}

/* ============================================================
   FEATURE HIGHLIGHT ROW (used on business.php detail pages)
   ============================================================ */
.avsweb-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 3rem 0;
    border-top: 1px solid var(--avs-border);
    border-bottom: 1px solid var(--avs-border);
    margin: 3rem 0;
}

.avsweb-highlight-item {
    text-align: center;
}

.avsweb-highlight-icon {
    font-size: 1.5rem;
    color: var(--avs-gold);
    margin-bottom: 0.75rem;
}

.avsweb-highlight-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.avsweb-highlight-desc {
    font-size: 0.85rem;
    color: var(--avs-text-muted);
    line-height: 1.5;
}

/* ============================================================
   PAGE INTRO (interior pages)
   ============================================================ */
.avsweb-page-intro {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--avs-border);
    margin-bottom: 3rem;
}

.avsweb-breadcrumb {
    font-size: 0.82rem;
    color: var(--avs-text-dim);
    margin-bottom: 1rem;
}

.avsweb-breadcrumb a {
    color: var(--avs-text-dim);
    text-decoration: none;
}

.avsweb-breadcrumb a:hover {
    color: var(--avs-gold);
}

.avsweb-breadcrumb span {
    margin: 0 0.4rem;
}

/* ============================================================
   SUCCESS / ERROR STATES
   ============================================================ */
.avsweb-success-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.avsweb-success-box i {
    font-size: 2.5rem;
    color: var(--avs-success);
    margin-bottom: 1rem;
}

.avsweb-success-box-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.avsweb-success-box-desc {
    font-size: 0.92rem;
    color: var(--avs-text-muted);
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .avsweb-track-grid {
        grid-template-columns: 1fr;
    }

    .avsweb-quote-wrap {
        grid-template-columns: 1fr;
    }

    .avsweb-highlight-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .avsweb-tier-grid,
    .avsweb-pkg-grid {
        grid-template-columns: 1fr;
    }

    .avsweb-upsell-options {
        flex-direction: column;
        align-items: center;
    }

    .avsweb-upsell-option {
        width: 100%;
        max-width: 320px;
    }

    .avsweb-hero {
        padding: 3rem 0 2.5rem;
    }
}
