/* QuantVault Component Styles */

/* Solutions/Approach Section */
.solution-section {
    padding: 120px 40px;
    background: var(--midnight);
    position: relative;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.approach-card {
    background: rgba(26, 32, 46, 0.6);
    border: 1px solid rgba(94, 179, 214, 0.2);
    padding: 45px 35px;
    border-radius: 12px;
    transition: all 0.4s;
    position: relative;
}

.approach-card:hover {
    transform: translateY(-8px);
    border-color: var(--quantum-blue);
    box-shadow: 0 20px 40px rgba(94, 179, 214, 0.2);
}

.approach-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.approach-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.approach-desc {
    color: var(--silver);
    line-height: 1.7;
    margin-bottom: 25px;
}

.approach-example {
    padding: 20px;
    background: rgba(94, 179, 214, 0.08);
    border-left: 3px solid var(--quantum-blue);
    border-radius: 4px;
    font-size: 14px;
    color: var(--pearl);
}

/* Case Study Section */
.case-study-section {
    padding: 120px 40px;
    background: var(--charcoal);
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.before-after {
    background: rgba(15, 20, 25, 0.6);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.before-after.before {
    border-left: 4px solid var(--amber);
}

.before-after.after {
    border-left: 4px solid var(--emerald);
}

.before-after h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.before-after ul {
    list-style: none;
}

.before-after li {
    color: var(--silver);
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.impact-metrics {
    background: rgba(15, 20, 25, 0.6);
    padding: 40px;
    border-radius: 12px;
}

.impact-metrics h4 {
    font-size: 24px;
    margin-bottom: 35px;
    color: white;
}

.metric {
    margin-bottom: 35px;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 14px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--quantum-blue);
}

.metric-value.emerald {
    color: var(--emerald);
}

.metric-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: var(--quantum-blue);
    border-radius: 4px;
    transition: width 1.5s ease-out;
}

.metric-fill.emerald {
    background: var(--emerald);
}

.testimonial-quote {
    margin-top: 40px;
    padding: 25px;
    background: rgba(94, 179, 214, 0.08);
    border-left: 3px solid var(--quantum-blue);
    border-radius: 6px;
}

.testimonial-quote p {
    font-size: 16px;
    line-height: 1.7;
    color: white;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-quote .author {
    font-size: 14px;
    color: var(--quantum-blue);
    font-weight: 600;
    font-style: normal;
}

/* Products Section */
.products-section {
    padding: 120px 40px;
    background: var(--midnight);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.tab-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--silver);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button:hover {
    border-color: var(--quantum-blue);
    color: white;
}

.tab-button.active {
    background: var(--quantum-blue);
    border-color: var(--quantum-blue);
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: rgba(26, 32, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 45px 35px;
    border-radius: 12px;
    transition: all 0.4s;
    position: relative;
}

.product-card.featured {
    border-color: var(--quantum-blue);
    transform: scale(1.05);
}

.product-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--quantum-blue);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--quantum-blue);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.product-tier {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--quantum-blue);
    margin-bottom: 20px;
}

.product-price {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.product-price sup {
    font-size: 24px;
    opacity: 0.7;
}

.product-description {
    color: var(--silver);
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 35px;
}

.product-features li {
    color: var(--pearl);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

/* Monthly Drops Section */
.drops-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--quantum-blue) 0%, #3a7fa3 100%);
    position: relative;
}

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

.drops-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.drops-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.drops-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.drops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.drop-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.drop-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.drop-name {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.drop-spots {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Process Timeline - STAGGERED LAYOUT */
.process-section {
    padding: 120px 40px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(94, 179, 214, 0.3);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: rgba(15, 20, 25, 0.6);
    border-radius: 12px;
    margin: 0 40px;
}

.timeline-step {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--quantum-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.timeline-desc {
    color: var(--silver);
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--quantum-blue);
    border: 4px solid var(--charcoal);
    border-radius: 50%;
    z-index: 1;
}

/* Founder Section - IMPROVED SPACING */
.founder-section {
    padding: 140px 40px 120px;
    background: var(--midnight);
    position: relative;
}

.founder-section .section-container {
    position: relative;
    z-index: 1;
}

/* Testimonials */
.testimonials-section {
    padding: 120px 40px;
    background: var(--midnight);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: rgba(26, 32, 46, 0.6);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(94, 179, 214, 0.3);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--pearl);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--quantum-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.author-details {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--silver);
}

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--midnight) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--silver);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Form - FIXED FOR PARTICLES */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--quantum-blue);
    background: rgba(15, 20, 25, 0.8);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: var(--quantum-blue);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(94, 179, 214, 0.4);
}

/* Footer */
.footer {
    background: var(--midnight);
    padding: 80px 40px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--silver);
    line-height: 1.6;
    max-width: 350px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--quantum-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--silver);
    font-size: 14px;
}

.footer-bottom p {
    margin: 5px 0;
}