/* ==========================================================================
   Pricing Page - Premium Visual Experience
   Font: Outfit - Modern geometric sans-serif
   Aesthetic: Dark dramatic with teal/emerald accents, subtle animations
   ========================================================================== */

/* ==========================================================================
   Base & Typography
   ========================================================================== */

.pricing-page {
    position: relative;
    min-height: 100vh;
    background: var(--theme-bg-primary);
    font-family: 'Outfit', var(--font-family-base);
    overflow-x: hidden;
}

/* Art-style background pattern */
.pricing-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('/images/backgrounds/flipt/futurism.png') repeat;
    background-size: 400px;
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
}

/* Section Eyebrow - Consistent Label Style */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--theme-primary);
    margin-bottom: 0.75rem;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-primary), transparent);
    border-radius: 1px;
}

.section-eyebrow-light {
    color: #4ECDC4;
}

.section-eyebrow-light::before {
    background: linear-gradient(90deg, #4ECDC4, transparent);
}

/* ==========================================================================
   Ambient Background - Floating Orbs
   ========================================================================== */

.pricing-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 20s ease-in-out infinite;
}

.ambient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #1DB584 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.ambient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #2E86C1 0%, transparent 70%);
    bottom: 10%;
    left: -200px;
    animation-delay: -7s;
}

.ambient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #4ECDC4 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(10px, 15px) scale(1.02); }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.pricing-hero {
    position: relative;
    text-align: center;
    padding: 5rem 1rem 4rem;
    background: linear-gradient(180deg,
        rgba(29, 181, 132, 0.05) 0%,
        transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4ECDC4;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 24px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #4ECDC4;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    color: var(--theme-text-primary);
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #4ECDC4 0%, #1DB584 50%, #2E86C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--theme-text-secondary);
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

/* Hero Decoration Rings */
.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.deco-ring-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: ringPulse 8s ease-in-out infinite;
}

.deco-ring-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    animation: ringPulse 8s ease-in-out infinite reverse;
    animation-delay: -4s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

/* ==========================================================================
   Pricing Comparison Section
   ========================================================================== */

.pricing-comparison {
    position: relative;
    padding: 3rem 0 4rem;
    z-index: 1;
}

.comparison-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.comparison-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin: 0.5rem 0 1rem;
    letter-spacing: -0.02em;
}

.comparison-subtitle {
    font-size: 0.95rem;
    color: var(--theme-text-secondary);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pdga-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #0066B3;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.pdga-inline-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.pdga-inline-logo {
    height: 1.1em;
    width: auto;
}

[data-theme="dark"] .pdga-inline-logo,
[data-bs-theme="dark"] .pdga-inline-logo {
    filter: brightness(0) invert(1);
}

.fee-note {
    font-size: 0.8rem;
    color: var(--theme-text-muted);
}

/* Choice Container */
.choice-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: stretch;
}

/* Choice Cards */
.choice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.3s ease;
}

.choice-card:hover {
    transform: translateY(-4px);
}

.choice-card:first-child {
    animation-delay: 0.1s;
}

.choice-card:last-of-type {
    animation-delay: 0.25s;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Noise Texture */
.card-noise {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Choice Badge */
.choice-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Choice Icon */
.choice-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
}

.icon-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.icon-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFB347;
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.icon-particles span:nth-child(1) {
    top: 5px;
    left: 10px;
    animation-delay: 0s;
}

.icon-particles span:nth-child(2) {
    top: 15px;
    right: 5px;
    animation-delay: -1s;
}

.icon-particles span:nth-child(3) {
    bottom: 10px;
    left: 5px;
    animation-delay: -2s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-8px) scale(1.2); opacity: 1; }
}

.choice-title {
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
}

/* Price Display */
.choice-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.7;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.6;
    margin-left: 0.25rem;
}

.price-diff {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-left: 0.5rem;
}

.price-breakdown {
    text-align: center;
    font-size: 0.75rem;
    color: var(--theme-text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.price-breakdown-full {
    color: rgba(255, 255, 255, 0.55);
}

/* Choice Tagline */
.choice-tagline {
    text-align: center;
    font-size: 0.9rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.75;
    line-height: 1.4;
}

.choice-tagline-dramatic {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 1rem;
    font-weight: 600;
    opacity: 1;
}

.choice-tagline-dramatic span {
    opacity: 0;
    animation: taglineReveal 0.6s ease-out forwards;
}

.choice-tagline-dramatic span:nth-child(1) { animation-delay: 0.5s; }
.choice-tagline-dramatic span:nth-child(2) { animation-delay: 0.7s; }
.choice-tagline-dramatic span:nth-child(3) { animation-delay: 0.9s; color: #4ECDC4; }

@keyframes taglineReveal {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(128, 128, 128, 0.08);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1rem;
}

.feature-included .feature-icon i {
    color: var(--theme-success);
}

.feature-excluded {
    opacity: 0.45;
}

.feature-excluded .feature-icon i {
    color: var(--theme-text-muted);
}

.feature-highlight .feature-icon i {
    color: #4ECDC4;
}

/* Management Card */
.choice-management {
    background: var(--theme-surface-1);
    border: 2px solid var(--theme-border-color);
}

.choice-management .choice-badge {
    background: var(--theme-surface-2);
    color: var(--theme-text-secondary);
    border: 1px solid var(--theme-border-color);
}

.choice-management .choice-icon {
    background: var(--theme-surface-2);
    color: var(--theme-text-secondary);
}

.choice-management .choice-title {
    color: var(--theme-text-primary);
}

.choice-management .price-currency,
.choice-management .price-amount {
    color: var(--theme-text-primary);
}

.choice-management .choice-tagline {
    color: var(--theme-text-muted);
}

.choice-management .feature-list li {
    color: var(--theme-text-secondary);
}

/* Full Experience Card */
.choice-full {
    background: linear-gradient(145deg, #0a1f1c 0%, #0d2a35 50%, #0a2530 100%);
    border: 2px solid transparent;
    overflow: visible;
}

.choice-full::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg,
        #1DB584 0%,
        #4aa39c 25%,
        #2E86C1 50%,
        #4ECDC4 75%,
        #16A085 100%);
    z-index: -1;
    opacity: 0.7;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

/* Card Shimmer Effect - hidden, kept for potential future use */
.card-shimmer {
    display: none;
}

/* Card Glow - subtle accent only */
.card-glow {
    display: none;
}

/* Card Border Glow */
.card-border-glow {
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(78, 205, 196, 0.25) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: -1;
    filter: blur(8px);
}

.choice-full .choice-badge.recommended {
    background: linear-gradient(135deg, #1DB584 0%, #4aa39c 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(29, 181, 132, 0.3);
}

.choice-full .choice-icon {
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.2) 0%, rgba(255, 107, 107, 0.15) 100%);
    color: #FFB347;
}

.choice-full .choice-title {
    color: white;
}

.choice-full .price-currency,
.choice-full .price-amount {
    color: white;
}

.choice-full .price-period {
    color: rgba(255, 255, 255, 0.6);
}

.choice-full .price-diff {
    background: rgba(29, 181, 132, 0.25);
    color: #4ECDC4;
}

.choice-full .choice-tagline {
    color: rgba(255, 255, 255, 0.85);
}

.choice-full .feature-list li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.choice-full .feature-included .feature-icon i {
    color: #34d399;
}

/* Divider */
.choice-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    gap: 0.75rem;
}

.divider-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--theme-border-color), transparent);
}

.divider-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-text-muted);
    background: var(--theme-bg-primary);
    padding: 0.5rem;
}

/* Processing Note */
.processing-note {
    max-width: 650px;
    margin: 2.5rem auto 0;
    padding: 1rem 1.5rem;
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--theme-text-secondary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.processing-note i {
    color: var(--theme-info);
    font-size: 1.1rem;
}

/* ==========================================================================
   AI Showcase Section
   ========================================================================== */

.ai-showcase {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    z-index: 1;
}

/* Showcase Background */
.showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.showcase-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        #0a1612 0%,
        #0d1f1a 30%,
        #0a1a1c 70%,
        #0a1414 100%);
}

.showcase-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(78, 205, 196, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 205, 196, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.ai-showcase .container {
    position: relative;
    z-index: 1;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin: 0.5rem 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.showcase-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Showcase Gallery */
.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.showcase-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 205, 196, 0.3);
}

.showcase-item-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 150px;
    background: radial-gradient(ellipse at top, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-label i {
    color: #4ECDC4;
    font-size: 1rem;
}

.showcase-label-centered {
    justify-content: center;
    background: transparent;
    border-bottom: none;
    padding: 0 0 0.5rem 0;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Showcase Frame */
.showcase-frame {
    position: relative;
    margin: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-image {
    transform: scale(1.02);
}

/* Frame Corners */
.frame-corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.frame-corners span {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(78, 205, 196, 0.5);
    border-style: solid;
    border-width: 0;
}

.frame-corners span:nth-child(1) {
    top: 0;
    left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
    border-radius: 4px 0 0 0;
}

.frame-corners span:nth-child(2) {
    top: 0;
    right: 0;
    border-top-width: 2px;
    border-right-width: 2px;
    border-radius: 0 4px 0 0;
}

.frame-corners span:nth-child(3) {
    bottom: 0;
    left: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-radius: 0 0 0 4px;
}

.frame-corners span:nth-child(4) {
    bottom: 0;
    right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-radius: 0 0 4px 0;
}

/* Showcase Details */
.showcase-details {
    padding: 0.75rem 1.25rem 1.25rem;
}

.showcase-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
}

.theme-emoticon {
    margin-right: 0.4rem;
}

.showcase-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.75rem 0;
    line-height: 1.55;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4ECDC4;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.showcase-link:hover {
    gap: 0.6rem;
    color: #6ee7df;
}

/* ==========================================================================
   Bag Tag Showcase
   ========================================================================== */

.bagtag-showcase {
    margin-top: 1rem;
}

.showcase-section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 2rem 0;
}

.bagtag-display {
    max-width: 700px;
    margin: 0 auto;
}

.bagtag-track {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.bagtag-card {
    position: relative;
    width: 150px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bagtag-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(78, 205, 196, 0.4);
}

/* Bag Tag Shine Effect */
.bagtag-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bagtag-card:hover .bagtag-shine {
    opacity: 0.8;
}

.bagtag-rank {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #4ECDC4;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    z-index: 2;
}

.bagtag-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.bagtag-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 2.5rem;
}

.bagtag-name {
    padding: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(0, 0, 0, 0.3);
}

/* Bag Tag Glow */
.bagtag-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse at bottom, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bagtag-card:hover .bagtag-glow {
    opacity: 1;
}

/* ==========================================================================
   Achievements Section
   ========================================================================== */

.achievements-section {
    position: relative;
    padding: 5rem 0;
    background: var(--theme-bg-primary);
    z-index: 1;
}

.achievements-section .showcase-header {
    margin-bottom: 2.5rem;
}

.achievements-section .showcase-header h2 {
    color: var(--theme-text-primary);
}

.achievements-section .showcase-subtitle {
    color: var(--theme-text-secondary);
}

/* Achievement Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.achievement-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
    border-radius: 14px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    animation: achievementReveal 0.6s ease-out forwards;
    animation-delay: var(--stagger, 0ms);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.achievement-card:hover {
    transform: translateY(-3px);
    border-color: var(--theme-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes achievementReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Achievement Glow */
.achievement-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(var(--theme-primary-rgb), 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover .achievement-glow {
    opacity: 1;
}

.achievement-icon-wrap {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--theme-surface-2);
}

.achievement-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-info {
    flex: 1;
    min-width: 0;
}

.achievement-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin: 0 0 0.25rem 0;
}

.achievement-desc {
    font-size: 0.8rem;
    color: var(--theme-text-muted);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.achievement-arrow {
    color: var(--theme-text-muted);
    font-size: 1rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.achievement-card:hover .achievement-arrow {
    transform: translateX(3px);
    color: var(--theme-primary);
}

/* Achievements CTA */
.achievements-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.75rem;
    background: var(--theme-surface-1);
    border: 2px solid var(--theme-border-color);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-explore:hover {
    border-color: var(--theme-primary);
    background: var(--theme-surface-2);
}

.btn-explore .btn-icon {
    transition: transform 0.2s ease;
}

.btn-explore:hover .btn-icon {
    transform: translateX(3px);
}

/* ==========================================================================
   Fee Breakdown Section
   ========================================================================== */

.fee-breakdown-section {
    position: relative;
    padding: 5rem 0;
    background: var(--theme-surface-1);
    z-index: 1;
}

.breakdown-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.breakdown-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin: 0.5rem 0 0;
    letter-spacing: -0.02em;
}

/* Fee Stack */
.fee-stack {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fee-item {
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.fee-item:hover {
    border-color: rgba(var(--theme-primary-rgb), 0.3);
}

.fee-item summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--theme-text-primary);
}

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

.fee-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-surface-2);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--theme-text-secondary);
    flex-shrink: 0;
}

.fee-name {
    flex: 1;
    font-size: 0.95rem;
}

.fee-amount {
    font-variant-numeric: tabular-nums;
    color: var(--theme-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.fee-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-surface-2);
    border-radius: 8px;
    color: var(--theme-text-muted);
    font-size: 0.85rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.fee-item[open] .fee-toggle {
    transform: rotate(45deg);
    background: var(--theme-primary);
    color: white;
}

.fee-description {
    padding: 0 1.25rem 1.25rem 4.5rem;
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    line-height: 1.6;
}

/* Fee Item Highlight (AI Experience) */
.fee-item-highlight {
    background: linear-gradient(135deg, rgba(29, 181, 132, 0.05) 0%, rgba(78, 205, 196, 0.03) 100%);
    border-color: rgba(78, 205, 196, 0.2);
}

.fee-item-highlight .fee-icon {
    background: rgba(78, 205, 196, 0.15);
    color: #4ECDC4;
}

.fee-item-highlight .fee-amount {
    color: #4ECDC4;
}

/* ==========================================================================
   Fee Waivers Section
   ========================================================================== */

.fee-waivers-section {
    position: relative;
    padding: 5rem 0;
    background: var(--theme-bg-primary);
    z-index: 1;
}

.waivers-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.waivers-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin: 0.5rem 0 0.5rem;
    letter-spacing: -0.02em;
}

.waivers-subtitle {
    font-size: 1.05rem;
    color: var(--theme-text-secondary);
    margin: 0;
}

.waivers-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.waiver-card {
    flex: 0 1 280px;
}

.waiver-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem 2.5rem;
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
    border-radius: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.waiver-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--theme-success-rgb), 0.3);
}

.waiver-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: rgba(var(--theme-success-rgb), 0.1);
    color: var(--theme-success);
    border-radius: 14px;
    font-size: 1.4rem;
}

.waiver-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin: 0 0 0.6rem 0;
}

.waiver-card p {
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.waiver-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: var(--theme-success);
    color: white;
    box-shadow: 0 4px 12px rgba(var(--theme-success-rgb), 0.3);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.pricing-cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        #0d1f1c 0%,
        #0a2a2f 30%,
        #0d1a25 60%,
        #0a1a18 100%);
}

.cta-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(78, 205, 196, 0.15) 0%,
        transparent 50%
    );
}

.pricing-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 2rem 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #1DB584 0%, #16A085 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(29, 181, 132, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(29, 181, 132, 0.4);
    color: white;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-cta .btn-icon {
    transition: transform 0.2s ease;
}

.btn-cta:hover .btn-icon {
    transform: translateX(3px);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 900px) {
    .choice-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 420px;
    }

    .choice-divider {
        flex-direction: row;
        padding: 0.75rem 0;
    }

    .divider-line {
        width: 60px;
        height: 1px;
    }

    .choice-card {
        max-width: none;
    }

    .waivers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 4rem 1rem 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .comparison-header h2,
    .breakdown-header h2,
    .waivers-header h2 {
        font-size: 1.6rem;
    }

    .showcase-header h2 {
        font-size: 1.8rem;
    }

    .showcase-gallery {
        grid-template-columns: 1fr;
    }

    .bagtag-track {
        gap: 0.75rem;
    }

    .bagtag-card {
        width: 130px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-cta h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 3rem 1rem 2rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.4rem 1rem;
    }

    .choice-card {
        padding: 2rem 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .bagtag-card {
        width: 100px;
    }

    .bagtag-name {
        font-size: 0.65rem;
        padding: 0.5rem;
    }

    .fee-description {
        padding-left: 1.25rem;
    }

    .section-eyebrow::before {
        width: 16px;
    }

    .ambient-orb {
        filter: blur(60px);
        opacity: 0.1;
    }
}

/* ==========================================================================
   Dark Mode Refinements
   ========================================================================== */

[data-theme="dark"] .pricing-page {
    --card-noise-opacity: 0.04;
}

[data-theme="dark"] .choice-management {
    background: var(--theme-surface-1);
}

[data-theme="dark"] .showcase-gradient {
    background: linear-gradient(180deg,
        #080f0d 0%,
        #0a1814 30%,
        #081416 70%,
        #080e0e 100%);
}

/* Light Mode Adjustments */
[data-theme="light"] .ai-showcase {
    background: #0a1612;
}

[data-theme="light"] .pricing-cta {
    background: #0d1f1c;
}

[data-theme="light"] .choice-full {
    background: linear-gradient(145deg, #0a1f1c 0%, #0d2a35 50%, #0a2530 100%);
}
