/* AIMatric Industries Page - Premium Styling */

/* Hero Section */
.industries-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-900) 100%);
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--teal-500);
    top: -200px;
    right: -100px;
    animation: floatOrb 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--orange-500);
    bottom: -100px;
    left: -50px;
    animation: floatOrb 25s ease-in-out infinite reverse;
}

.hero-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--teal-300);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb 30s ease-in-out infinite;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }
}

.industry-icons-float {
    position: absolute;
    inset: 0;
}

.float-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.15;
    animation: iconFloat 20s ease-in-out infinite;
}

.float-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.float-icon:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.float-icon:nth-child(4) {
    bottom: 30%;
    right: 10%;
    animation-delay: 6s;
}

.float-icon:nth-child(5) {
    top: 40%;
    left: 20%;
    animation-delay: 8s;
}

.float-icon:nth-child(6) {
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.float-icon:nth-child(7) {
    top: 70%;
    right: 20%;
    animation-delay: 12s;
}

.float-icon:nth-child(8) {
    bottom: 40%;
    right: 25%;
    animation-delay: 14s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.2;
    }
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-200);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--orange-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--teal-300) 0%, var(--orange-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 22px;
    font-weight: 600;
    color: var(--teal-300);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 16px;
}

.industries-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.industries-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--white);
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-white {
    background: var(--white);
    color: var(--gray-900);
}

.section-dark-gradient {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--navy-900) 100%);
    color: var(--white);
}

.section-teal {
    background: var(--teal-800);
    color: var(--white);
}

.section-navy {
    background: var(--navy-900);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal-600);
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--teal-300);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Why Specialized Section */
.specialized-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.understanding-card {
    padding: 40px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 20px;
}

.understanding-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #DC2626;
    margin-bottom: 24px;
}

.understanding-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.understand-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 10px;
    font-size: 15px;
    color: var(--gray-700);
}

.item-icon {
    font-size: 20px;
}

.capabilities-showcase {
    padding: 40px;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 20px;
}

.capabilities-showcase h3 {
    font-size: 18px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 24px;
}

.capability-examples {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cap-example {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 10px;
}

.cap-badge {
    padding: 4px 12px;
    background: var(--teal-600);
    color: var(--white);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.cap-example p {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

.specialized-conclusion {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 100%);
    border-radius: 20px;
    border: 1px solid var(--teal-200);
}

.conclusion-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--white);
    border: 2px solid var(--teal-400);
    border-radius: 100px;
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.badge-icon {
    font-size: 24px;
}

.specialized-conclusion p {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
}

/* Industry Navigation */
.industry-nav-section {
    padding: 10px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.industry-nav-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.industry-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 4px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.industry-nav-card:hover,
.industry-nav-card.active {
    background: var(--teal-600);
    border-color: var(--teal-600);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(18, 146, 164, 0.2);
}

.industry-nav-card:hover .nav-label,
.industry-nav-card.active .nav-label {
    color: var(--white);
}

.nav-icon {
    font-size: 28px;
}

.nav-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

/* Industry Sections */
.industry-section {
    padding: 100px 0;
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.industry-icon-large {
    font-size: 64px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.section-white .industry-icon-large {
    background: var(--gray-100);
}

.industry-title-group {
    flex: 1;
}

.industry-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal-300);
    margin-bottom: 8px;
}

.section-white .industry-label {
    color: var(--teal-600);
}

.industry-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

/* Pain Section */
.pain-section {
    margin-bottom: 48px;
}

.pain-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pain-intro {
    font-size: 16px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.section-white .pain-intro {
    color: var(--gray-600);
}

.pain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.pain-tags span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-200);
}

.pain-tags.light span {
    background: var(--gray-100);
    color: var(--gray-700);
}

.pain-challenges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-200);
}

.section-white .challenge-item {
    background: #FEF2F2;
    color: var(--gray-700);
}

.challenge-x {
    color: #EF4444;
    font-weight: 700;
}

.pain-warning {
    padding: 20px;
    background: rgba(249, 115, 22, 0.15);
    border-left: 4px solid var(--orange-500);
    border-radius: 0 12px 12px 0;
    font-size: 15px;
    color: var(--gray-200);
}

.pain-warning.light {
    background: #FFF7ED;
    color: var(--gray-700);
}

/* Solutions Section */
.solutions-section {
    margin-bottom: 48px;
}

.solutions-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.solutions-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.solution-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: var(--teal-400);
}

.solution-card.light {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.solution-card.light:hover {
    border-color: var(--teal-400);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.solution-header h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    width: 100%;
    margin-top: 8px;
}

.agent-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
}

.agent-badge.mark {
    background: linear-gradient(135deg, #F97316, #FB923C);
}

.agent-badge.vali {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.agent-badge.su {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.agent-badge.rekon {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
}

.agent-badge.idp {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li::before {
    content: '✓';
    color: var(--teal-400);
    font-weight: 700;
}

.solution-card.light .solution-features li {
    color: var(--gray-600);
    border-bottom-color: var(--gray-200);
}

/* Outcomes Section */
.outcomes-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.outcomes-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.outcomes-grid.light .outcome-card {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.outcome-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    text-align: center;
}

.outcome-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.section-white .outcome-value {
    color: var(--teal-600);
}

.outcome-label {
    font-size: 13px;
    color: var(--gray-300);
}

.section-white .outcome-label {
    color: var(--gray-600);
}

.outcome-tagline {
    text-align: center;
    font-size: 16px;
    color: var(--gray-300);
    font-style: italic;
    margin-top: 16px;
}

.section-white .outcome-tagline {
    color: var(--gray-600);
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.impact-card {
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 100%);
    border: 1px solid var(--teal-200);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(18, 146, 164, 0.15);
}

.impact-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--teal-600);
    margin-bottom: 12px;
}

.impact-label {
    font-size: 14px;
    color: var(--gray-600);
}

.impact-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--gray-700);
}

.benefit-check {
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

.impact-conclusion {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--teal-600);
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--teal-200);
    opacity: 0.5;
    z-index: -1;
}

/* Final CTA */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-900) 100%);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.cta-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(32, 178, 200, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subheadline {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .industry-nav-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .specialized-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid.three-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .industry-nav-section {
        position: relative;
        top: 0;
        overflow-x: auto;
    }

    .industry-nav-grid {
        grid-template-columns: repeat(8, minmax(100px, 1fr));
        gap: 8px;
    }

    .industry-header {
        flex-direction: column;
        text-align: center;
    }

    .industry-icon-large {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }

    .industry-title {
        font-size: 28px;
    }

    .solutions-grid,
    .solutions-grid.three-col {
        grid-template-columns: 1fr;
    }

    .outcomes-grid,
    .outcomes-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-challenges {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-headline {
        font-size: 32px;
    }

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

@media (max-width: 480px) {
    .industry-nav-grid {
        grid-template-columns: repeat(4, minmax(80px, 1fr));
    }

    .nav-icon {
        font-size: 24px;
    }

    .nav-label {
        font-size: 10px;
    }

    .outcomes-grid,
    .outcomes-grid.three-col {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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