/* AI Agent Page Specific Styles */
/* Mapped seamlessly to index.css Theme Variables */

.luxury-hero { 
    min-height: 85vh; 
    display: flex; 
    align-items: center; 
    background: var(--navy-deep); 
    color: var(--text-light); 
    position: relative; 
    overflow: hidden; 
    padding: 12rem 0 6rem 0; 
}

.luxury-hero::before { 
    content:''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 1px; 
    background: rgba(255,255,255,0.1); 
}

.luxury-hero h1 { 
    font-family: var(--font-heading); 
    font-size: clamp(3rem, 6vw, 6.5rem); 
    font-weight: 300; 
    letter-spacing: -0.04em; 
    line-height: 1.05; 
    margin-bottom: 2rem; 
    max-width: 1100px; 
}

.luxury-hero h1 strong { 
    font-weight: 600; 
    color: var(--cyan); 
}

.luxury-hero p { 
    font-size: 1.5rem; 
    color: var(--text-muted); 
    max-width: 600px; 
    font-weight: 300; 
    line-height: 1.5; 
    margin-bottom: 3.5rem; 
}
        
.luxury-section { 
    padding: 10rem 0; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}

.luxury-section-dark { 
    padding: 10rem 0; 
    background: var(--navy-deep); 
    color: var(--text-light); 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}
        
.luxury-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 4rem; 
}

@media (min-width: 1024px) { 
    .luxury-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 6rem; 
    } 
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 2rem;
}
        
.luxury-heading { 
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.5rem); 
    font-weight: 400; 
    letter-spacing: -0.03em; 
    line-height: 1.1; 
    margin-bottom: 2rem; 
    color: var(--text-primary); 
}

.luxury-heading.text-white { 
    color: var(--text-light); 
}

.luxury-text-large { 
    font-size: 1.35rem; 
    color: var(--text-body); 
    font-weight: 300; 
    line-height: 1.6; 
}

.luxury-text-large.dark-mode { 
    color: var(--text-muted); 
}
        
/* Sleek UI Mockups */
.glass-mockup { 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: var(--radius-xl); 
    padding: 3rem; 
    -webkit-backdrop-filter: blur(20px); 
    backdrop-filter: blur(20px); 
    box-shadow: var(--shadow-xl); 
}

.glass-mockup-light { 
    background: var(--bg-white); 
    border: 1px solid rgba(0,0,0,0.05); 
    border-radius: var(--radius-xl); 
    padding: 3rem; 
    box-shadow: var(--shadow-lg); 
}

.glass-mockup-blue {
    background: #0284c7; 
    border: 1px solid rgba(255,255,255,0.15); 
    border-radius: var(--radius-xl); 
    padding: 3rem; 
    box-shadow: var(--shadow-lg);
    color: var(--white);
}
        
/* Typography Lists */
.luxury-list { 
    list-style: none; 
    padding: 0; 
    margin: 3rem 0; 
    border-top: 1px solid rgba(255,255,255,0.1); 
}

.luxury-list-light { 
    list-style: none; 
    padding: 0; 
    margin: 3rem 0; 
    border-top: 1px solid rgba(0,0,0,0.1); 
}

.luxury-list li { 
    padding: 1.5rem 0; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    display: flex; 
    align-items: flex-start; 
    gap: 1rem; 
    font-size: 1.15rem; 
    color: var(--text-light); 
    font-weight: 300; 
}

.luxury-list-light li { 
    padding: 1.5rem 0; 
    border-bottom: 1px solid rgba(0,0,0,0.1); 
    display: flex; 
    align-items: flex-start; 
    gap: 1rem; 
    font-size: 1.15rem; 
    color: var(--text-primary); 
    font-weight: 400; 
}

.luxury-list li svg { 
    stroke: var(--cyan); 
    flex-shrink: 0; 
    margin-top: 0.25rem; 
}

.luxury-list-light li svg { 
    stroke: var(--cyan-dim); 
    flex-shrink: 0; 
    margin-top: 0.25rem; 
}
        
/* Interactive Calculator Premium UI */
.premium-calc-container { 
    background: var(--bg-white); 
    border-radius: var(--radius-xl); 
    box-shadow: var(--shadow-lg); 
    border: 1px solid rgba(0,0,0,0.05); 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    transition: var(--transition-smooth);
}

.premium-calc-container:hover {
    box-shadow: var(--shadow-xl);
}

.premium-calc-inputs { 
    padding: 3rem; 
    background: var(--bg-light); 
    flex: 1; 
}

.premium-calc-outputs { 
    padding: 3rem; 
    background: var(--navy-deep); 
    color: var(--text-light); 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    position: relative; 
    overflow: hidden; 
}

.premium-calc-outputs::before { 
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%; 
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 60%); 
    pointer-events: none; 
}
        
.luxury-calc-group { margin-bottom: 1.5rem; }

.luxury-calc-label { 
    display: flex; 
    justify-content: space-between; 
    font-size: 1rem; 
    font-weight: 600; 
    margin-bottom: 0.5rem; 
    color: var(--text-primary); 
}

.input-wrapper { 
    position: relative; 
    display: flex; 
    align-items: center; 
}

.input-prefix { 
    position: absolute; 
    left: 1.25rem; 
    color: var(--text-muted); 
    font-weight: 500; 
    font-size: 1.1rem; 
}

.luxury-calc-input { 
    width: 100%; 
    border: 1px solid rgba(0,0,0,0.15); 
    border-radius: var(--radius-md); 
    padding: 1rem 1.25rem; 
    font-size: 1.25rem; 
    font-weight: 600; 
    transition: var(--transition-fast); 
    color: var(--text-primary); 
    background: var(--bg-white); 
    font-family: var(--font-body); 
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); 
}

.input-with-prefix { padding-left: 2.5rem; }

.luxury-calc-input:focus { 
    outline: none; 
    border-color: var(--cyan); 
    box-shadow: 0 0 0 4px var(--cyan-subtle), inset 0 2px 4px rgba(0,0,0,0.02); 
}
        
.luxury-calc-slider { 
    -webkit-appearance: none;
    appearance: none;
    width: 100%; 
    margin-top: 1.5rem; 
    height: 16px; 
    border-radius: 8px; 
    background: linear-gradient(180deg, #93cfec 0%, #bcebfa 100%); 
    border: 2px solid var(--cyan); 
    box-shadow: inset 0 4px 10px rgba(10, 31, 63, 0.25), 0 2px 4px rgba(0,0,0,0.05);
}

.luxury-calc-slider::-webkit-slider-thumb { 
    -webkit-appearance: none;
    appearance: none; 
    width: 32px; 
    height: 32px; 
    background: var(--navy-deep); /* dark blue dot */
    border-radius: 50%; 
    cursor: pointer; 
    border: 3px solid #ffffff; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); 
    transition: transform var(--transition-fast);
}

.luxury-calc-slider::-moz-range-thumb { 
    width: 32px; 
    height: 32px; 
    background: var(--navy-deep); 
    border-radius: 50%; 
    cursor: pointer; 
    border: 3px solid #ffffff; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); 
    transition: transform var(--transition-fast);
}

.luxury-calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.luxury-calc-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
}
        
.luxury-output { 
    font-size: clamp(3rem, 6vw, 4.5rem); 
    font-weight: 700; 
    letter-spacing: -0.05em; 
    color: var(--text-light); 
    line-height: 1; 
    margin: 0.5rem 0 2rem 0; 
    font-family: var(--font-heading); 
}

.luxury-output-label { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    font-weight: 700; 
}
        
/* Pricing Grid & Cards */
.pricing-section { padding: 8rem 0; background-color: var(--bg-white); }
.pricing-title { text-align: center; font-size: clamp(2.5rem, 4vw, 3.5rem); font-family: var(--font-heading); margin-bottom: 1rem; color: var(--navy-deep); letter-spacing: -0.03em; }
.pricing-subtitle { text-align: center; font-size: 1.25rem; color: var(--text-body); max-width: 700px; margin: 0 auto 4rem; line-height: 1.6; }

.pricing-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 3rem; 
    max-width: 1000px; 
    margin: 0 auto; 
    align-items: stretch;
}
@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr 1fr; }
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0,229,255,0.3);
}
.pricing-card-dark {
    background: var(--navy-deep);
    color: var(--text-light);
    border-color: rgba(255,255,255,0.1);
}
.pricing-card-dark:hover {
    border-color: var(--cyan);
}
.pricing-card-blue {
    background: #0284c7;
    color: var(--white);
    border-color: rgba(255,255,255,0.15);
}
.pricing-card-blue:hover {
    border-color: rgba(255,255,255,0.4);
}
.pricing-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 2rem;
    color: var(--cyan);
}
.pricing-icon-wrap.bg-green-soft { background: var(--cyan-subtle); }

.pricing-tier { font-size: 1.75rem; margin-bottom: 1rem; color: var(--navy-deep); font-weight: 700; border: none; padding: 0; }
.pricing-card-dark .pricing-tier, .pricing-card-blue .pricing-tier { color: var(--text-light); }

.pricing-amount { font-size: 4.5rem; font-weight: 700; line-height: 1; margin: 1rem 0 0.5rem; letter-spacing: -0.04em; color: var(--navy-deep); }
.pricing-card-dark .pricing-amount, .pricing-card-blue .pricing-amount { color: var(--text-light); }
.pricing-amount .pricing-curency { font-size: 2rem; font-weight: 500; vertical-align: super; margin-right: 0.25rem; color: var(--text-muted); }
.pricing-card-dark .pricing-amount .pricing-curency, .pricing-card-blue .pricing-amount .pricing-curency { color: rgba(255,255,255,0.7); }
.pricing-period { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.pricing-card-dark .pricing-period, .pricing-card-blue .pricing-period { color: rgba(255,255,255,0.85); }

.pricing-divider {
    height: 1px; width: 100%;
    background: rgba(0,0,0,0.08);
    margin: 2.5rem 0;
}
.pricing-card-dark .pricing-divider, .pricing-card-blue .pricing-divider { background: rgba(255,255,255,0.15); }

.pricing-feature-list { list-style: none; padding: 0; margin-bottom: 2.5rem; }
.pricing-feature-list li {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.25rem; font-size: 1.1rem; color: var(--text-body); font-weight: 500;
}
.pricing-card-dark .pricing-feature-list li, .pricing-card-blue .pricing-feature-list li { color: rgba(255,255,255,0.9); }
.pricing-check { flex-shrink: 0; color: var(--cyan); margin-top: 0.25rem; }
.pricing-card-blue .pricing-check { color: var(--white); }
.pricing-card-blue .pricing-icon-wrap { color: var(--white); background: rgba(255,255,255,0.15); }
.pricing-card-blue .btn-luxury-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.pricing-card-blue .btn-luxury-outline { background-color: rgba(255,255,255,0.1); }

.pricing-disclaimer { text-align: center; margin-top: 4rem; font-size: 0.85rem; color: var(--text-muted); }

/* Roadmap Timeline Grid */
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 768px) {
    .timeline-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.timeline-column {
    position: relative;
}
.timeline-title {
    font-size: 1.75rem; color: var(--navy-deep); font-weight: 700;
    margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid rgba(0,0,0,0.05);
}
.timeline-track {
    position: relative;
    padding-left: 2.5rem;
}
.timeline-track::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 7px;
    width: 2px;
    background: rgba(0,0,0,0.06);
}
.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -2.5rem; /* Moves it back into the track line */
    top: 0.25rem;
    width: 16px; height: 16px;
    background: var(--bg-white);
    border: 3px solid var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--cyan-subtle);
    z-index: 2;
}
.timeline-step-title {
    font-size: 1.25rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 0.5rem;
}
.timeline-step-desc {
    font-size: 1.05rem; color: var(--text-body); line-height: 1.6;
}

.pricing-price { 
    font-size: 4rem; 
    font-weight: 300; 
    letter-spacing: -0.04em; 
    color: var(--text-primary); 
    line-height: 1; 
}
        
.btn-luxury { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    padding: 1.125rem 2.5rem; 
    background: var(--cyan); 
    color: var(--navy-deep); 
    font-weight: 600; 
    font-size: 1.05rem; 
    border-radius: 100px; 
    text-decoration: none; 
    transition: var(--transition-smooth); 
}

.btn-luxury:hover { 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-cyan); 
    color: var(--navy-deep); 
    background: var(--cyan-dim); 
}

.btn-luxury-outline { 
    background: transparent; 
    border: 1px solid rgba(255,255,255,0.2); 
    color: var(--text-light); 
}

.btn-luxury-outline:hover { 
    background: rgba(255,255,255,0.1); 
    border-color: rgba(255,255,255,0.3); 
    transform: translateY(-2px); 
    color: var(--text-light); 
}

.btn-rounded {
    border-radius: 100px;
}
        
/* Chat Bubbles */
.lux-chat-bubble { 
    background: rgba(255,255,255,0.05); 
    border: 1px solid rgba(255,255,255,0.1); 
    padding: 1.5rem; 
    border-radius: var(--radius-lg); 
    color: var(--text-light); 
    margin-bottom: 1rem; 
    font-weight: 400; 
    line-height: 1.6; 
    font-size: 1.05rem; 
}

.lux-chat-user {
    border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
    margin-left: auto;
    display: block;
    max-width: 85%;
}

.lux-chat-bubble-agent { 
    background: rgba(0,229,255,0.1); 
    border: 1px solid rgba(0,229,255,0.3); 
    border-left: 4px solid var(--cyan); 
    color: var(--text-light); 
    padding: 1.5rem; 
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0; 
    margin-bottom: 1rem; 
    font-weight: 400; 
    line-height: 1.6; 
    font-size: 1.05rem; 
    max-width: 90%;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
}

.pointer-events-none { pointer-events: none; }
        
/* Accessibility Overrides */
.text-teal { color: var(--cyan-dim) !important; } 
.text-white .text-teal, .luxury-section-dark .text-teal { color: var(--cyan) !important; } 
.text-primary-dark { color: var(--text-primary) !important; }

/* Essential Utility Classes for Resourcing & Spacing */
.mb-0 { margin-bottom: 0; } .mb-0-25 { margin-bottom: 0.25rem; } .mb-0-5 { margin-bottom: 0.5rem; } .mb-1 { margin-bottom: 1rem; } .mb-1-5 { margin-bottom: 1.5rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; } .mb-4 { margin-bottom: 4rem; } .mb-5 { margin-bottom: 5rem; }
.mt-0 { margin-top: 0; } .mt-0-5 { margin-top: 0.5rem; } .mt-1 { margin-top: 1rem; } .mt-1-5 { margin-top: 1.5rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mt-4 { margin-top: 4rem; } .mt-5 { margin-top: 5rem; } .mt-auto { margin-top: auto; }
.pb-0-25 { padding-bottom: 0.25rem; } .pb-0-5 { padding-bottom: 0.5rem; } .pb-1 { padding-bottom: 1rem; } .pb-2 { padding-bottom: 2rem; }
.pt-1 { padding-top: 1rem; } .pt-2 { padding-top: 2rem; } .pt-3 { padding-top: 3rem; } .pt-4 { padding-top: 4rem; }
.p-1-5 { padding: 1.5rem; } .p-2 { padding: 2rem; } .p-3 { padding: 3rem; }
.pl-0 { padding-left: 0; } .pl-2 { padding-left: 2rem; }
.flex { display: flex; } .flex-col { flex-direction: column; } .flex-align-center { display: flex; align-items: center; } .flex-between { display: flex; justify-content: space-between; align-items: center; } .flex-center { display: flex; justify-content: center; align-items: center; } .flex-grow-1 { flex-grow: 1; }
.gap-0-5 { gap: 0.5rem; } .gap-1 { gap: 1rem; } .gap-2 { gap: 2rem; }
.w-full { width: 100%; } .block { display: block; } .inline-block { display: inline-block; }
.text-xs { font-size: 0.75rem; } .text-sm { font-size: 0.875rem; } .text-md { font-size: 1rem; } .text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; } .text-3xl { font-size: 1.875rem; }
.font-normal { font-weight: 400; } .font-medium { font-weight: 500; } .font-semibold { font-weight: 600; } .font-bold { font-weight: 700; }
.text-muted { color: var(--text-muted); } 
.text-white-alpha-60 { color: rgba(255,255,255,0.6); }
.text-white-alpha-80 { color: rgba(255,255,255,0.8); } 
.text-green { color: var(--cyan); }
.line-height-normal { line-height: 1.5; } .line-height-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; } .tracking-wide { letter-spacing: 0.05em; }
.italic { font-style: italic; } .font-italic { font-style: italic; }
.bg-white { background-color: var(--bg-white); } .bg-cyan-alpha-10 { background-color: rgba(0,229,255,0.05); } .bg-light { background-color: var(--bg-light); }
.bg-white-alpha-5 { background: rgba(255,255,255,0.05); }
.bg-white-alpha-10 { background: rgba(255,255,255,0.1); }
.bg-white-alpha-20 { background: rgba(255,255,255,0.2); }
.border-b-black-alpha-05 { border-bottom: 1px solid rgba(0,0,0,0.05); } .border-b-black-alpha-10 { border-bottom: 1px solid rgba(0,0,0,0.1); }
.border-t-black-alpha-05 { border-top: 1px solid rgba(0,0,0,0.05); } .border-t-black-alpha-10 { border-top: 1px solid rgba(0,0,0,0.1); }
.border-y-black-alpha-05 { border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.border-b-white-alpha-20 { border-bottom: 1px solid rgba(255,255,255,0.2); }
.border-white-alpha-20 { border: 1px solid rgba(255,255,255,0.2); }
.border-t-white-alpha-20 { border-top: 1px solid rgba(255,255,255,0.2); }
.border { border: 1px solid rgba(0,0,0,0.1); } .border-cyan-alpha-20 { border-color: rgba(0,229,255,0.2); }
.rounded-1 { border-radius: var(--radius-sm); } .rounded-2 { border-radius: var(--radius-md); }
.shadow-sm { box-shadow: var(--shadow-sm); } .shadow-xl { box-shadow: var(--shadow-xl); }
.max-w-600 { max-width: 600px; } .max-w-800 { max-width: 800px; } .mx-auto { margin-left: auto; margin-right: auto; }
.btn-block { display: block; width: 100%; text-align: center; }
