/* ══════════════════════════════════════════════════════════════
   AXO-G LANDING PAGE V2 STYLES (PREMIUM AESTHETICS)
══════════════════════════════════════════════════════════════ */

/* --- Typography & Base Adjustments --- */
.landing-page {
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
    overflow-x: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Hero Section (Mesh Gradient + Glassmorphism) --- */
.hero-v2 {
    position: relative;
    padding: 8rem 0 6rem 0;
    background: linear-gradient(125deg, #020617 0%, #0f172a 40%, #1e1b4b 100%);
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
}

/* Animated Mesh Orbs */
.hero-orb-v2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    animation: floatOrb 12s ease-in-out infinite alternate;
}
.hero-orb-v2.orb-1 {
    width: 400px; height: 400px;
    background: #4f46e5;
    top: -100px; left: -100px;
}
.hero-orb-v2.orb-2 {
    width: 350px; height: 350px;
    background: #f59e0b;
    bottom: -50px; right: -50px;
    animation-delay: -5s;
}
.hero-orb-v2.orb-3 {
    width: 300px; height: 300px;
    background: #ec4899;
    top: 40%; left: 40%;
    animation-duration: 15s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.1); }
}

.hero-title-v2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-subtitle-v2 {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

/* Glass Panel for Search */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.glass-panel label {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.glass-input {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #f8fafc !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease !important;
}
.glass-input:focus {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: #f59e0b !important;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15) !important;
}

/* Trust Badges */
.trust-badge-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-badge-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* --- Stats Section --- */
.stats-wrap {
    background: #ffffff;
    padding: 4rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.stat-card-v2 {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-card-v2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}
.stat-num-v2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label-v2 {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Categories Grid --- */
.section-v2 {
    padding: 6rem 0;
}
.section-bg-light {
    background-color: #f8fafc;
}

.cat-card-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}
.cat-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}
.cat-icon-v2 {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(37,99,235,0.1));
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.cat-card-v2:hover .cat-icon-v2 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}
.cat-name-v2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
}

/* --- Process Steps --- */
.process-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}
.process-step-v2 {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}
.process-step-v2:hover {
    transform: translateY(-5px);
}
.process-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}
.process-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}
.process-desc {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Results / Contractor Cards --- */
.contractor-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.contractor-card-v2:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}
.cc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.cc-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}
.cc-category {
    font-size: 0.85rem;
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
}
.cc-badge-trusted {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}
.cc-badge-verified {
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}
.cc-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}
.cc-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #0f172a;
}
.cc-rating i {
    color: #f59e0b;
}
.cc-exp {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}
.cc-details {
    flex-grow: 1;
}
.cc-detail-item {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cc-detail-item i {
    color: #94a3b8;
}
.cc-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.cc-btn {
    flex: 1;
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
}
.cc-btn-primary {
    background: #0f172a;
    color: #ffffff;
    border: none;
}
.cc-btn-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    color: #fff;
}
.cc-btn-outline {
    background: transparent;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}
.cc-btn-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}
.cc-btn-success {
    background: #10b981;
    color: #ffffff;
    border: none;
}
.cc-btn-success:hover {
    background: #059669;
    color: #ffffff;
}

/* Locked Details Blur */
.locked-content {
    position: relative;
    padding-top: 0.5rem;
}
.locked-blur {
    filter: blur(4px);
    user-select: none;
    opacity: 0.5;
}
.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(1px);
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.2s;
}
.locked-overlay:hover {
    background: rgba(255,255,255,0.6);
}
.locked-overlay i {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.locked-overlay span {
    font-weight: 700;
    font-size: 0.85rem;
    color: #0f172a;
}

/* --- Section Headings --- */
.heading-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    color: #3b82f6;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.heading-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.heading-desc {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Map Coverage --- */
.map-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.state-pill {
    padding: 1.5rem;
    border-radius: 20px;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}
.state-pill-mh {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}
.state-pill-mp {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}
.state-pill-free {
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    color: #475569;
}
.pill-count {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

/* --- FAQ --- */
.faq-tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    color: #64748b;
    border-radius: 12px;
    transition: all 0.3s;
}
.faq-tab-btn.active {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}
.faq-details {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-details[open] {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1);
}
.faq-summary {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.faq-summary::-webkit-details-marker {
    display: none;
}
.faq-body {
    padding: 0 1.5rem 1.5rem 3rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .hero-title-v2 { font-size: 2.5rem; }
    .glass-panel { padding: 1.5rem; }
    .stat-num-v2 { font-size: 2.5rem; }
    .heading-title { font-size: 2.25rem; }
}
