/* =========================================
   CSS Variables & Reset
   ========================================= */
:root {
    --bg-dark: #0a0a0c;
    --bg-surface: #141417;
    --bg-surface-light: #222227;
    
    --text-main: #f0f0f5;
    --text-muted: #a0a0ab;
    
    --accent-gold: #d4af37;
    --accent-gold-hover: #e8c659;
    --accent-gold-dark: #997a15;
    
    --border-color: rgba(255, 255, 255, 0.1);
    
    --font-main: 'Noto Sans JP', 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #fff, #a0a0ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.text-gold {
    color: var(--accent-gold);
}

/* =========================================
   Buttons
   ========================================= */
.btn-primary, .btn-primary-sm, .btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary, .btn-primary-sm {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover, .btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   Header
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #fff;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoom 20s infinite alternate linear;
}

@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0.4) 100%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-main);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--text-main);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* =========================================
   About / Features
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: var(--bg-surface-light);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Flow Timeline
   ========================================= */
.timeline {
    margin-top: 4rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-num {
    width: 80px;
    height: 80px;
    background: var(--bg-surface);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    z-index: 1;
    flex-shrink: 0;
}

.timeline-content {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    flex-grow: 1;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.timeline-content p {
    color: var(--text-muted);
}

/* =========================================
   Setlist
   ========================================= */
.setlist {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1a20 100%);
}

.setlist-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.setlist-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.song-list li {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.song-list li::before {
    content: '▶';
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.song-list li:hover {
    padding-left: 2rem;
    background: rgba(255,255,255,0.05);
}

.stealth-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.stealth-link:hover {
    opacity: 0.7;
}

/* =========================================
   To Top Button
   ========================================= */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.to-top.show {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    transform: translateY(-3px);
    background: #e6c547;
}

/* =========================================
   Profile Section
   ========================================= */
.profile-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
}

.profile-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.profile-name h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1.2;
}

.profile-name span {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.profile-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.profile-info strong {
    color: #fff;
    width: 150px;
    display: inline-block;
}

.profile-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.profile-message h4, .profile-roles h4, .profile-support h4, .profile-videos h4 {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-gold);
    padding-left: 10px;
}

.profile-message p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.profile-roles ul {
    list-style: none;
}

.profile-roles li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
    word-break: keep-all; /* Prevent awkward mid-word breaks */
    display: flex;
    align-items: flex-start;
}

.profile-roles li::before {
    content: '▶';
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.profile-support {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.profile-support p {
    color: #fff;
    line-height: 1.8;
    font-size: 1.05rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1a20 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: Georgia, serif;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.reviewer {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: right;
}

@media (max-width: 768px) {
    .profile-body {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Pricing
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.price-card.premium {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, var(--bg-surface-light) 0%, var(--bg-surface) 100%);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #000;
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.2rem;
    font-weight: 700;
}

.space-req {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.plan-features {
    text-align: left;
    margin-top: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent-gold);
}

.pricing-notes {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
}

.options-title {
    text-align: center;
    font-size: 2rem;
    margin: 5rem 0 2rem;
    color: #fff;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}

.option-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.option-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--bg-surface-light);
    transform: translateY(-5px);
}

.option-card h4 {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.option-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-item summary {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    list-style: none;
    padding-right: 3rem;
    outline: none;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
    color: #fff;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
    border-top-color: rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

/* =========================================
   Contact Form
   ========================================= */
.contact-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 4rem;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: #050506;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--accent-gold);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-col ul li {
    margin-bottom: 0.8rem;
}

.link-col ul a {
    color: var(--text-muted);
}

.link-col ul a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   Animations
   ========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {
    .setlist-wrapper, .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Mobile Sticky Contact Button */
.mobile-sticky-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--gold);
        color: var(--bg-dark);
        padding: 1rem;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        z-index: 1000;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
        transition: background 0.3s ease;
    }
    
    .mobile-sticky-btn:active {
        background: #b5922e;
    }
    
    body {
        padding-bottom: 70px;
    }
}


/* Pricing Value Box */
.pricing-value-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 4rem auto 2rem;
    max-width: 800px;
    text-align: center;
}

.pricing-value-box h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
    padding-bottom: 1rem;
}

.pricing-value-box ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-value-box li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.value-item {
    color: #fff;
    font-weight: 500;
}

.value-price {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.value-highlight {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
}

.highlight-gold {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.3em;
}

.pricing-budget-box {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #fff;
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.mobile-only {
    display: none;
}

@media (max-width: 600px) {
    .pricing-value-box {
        padding: 1.5rem;
    }
    
    .pricing-value-box li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mobile-only {
        display: block;
    }
}

