:root {
    --primary-dark: #000000;
    --primary-light: #ffffff;
    --accent-orange: #f97316;
    --text-dark: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #6b7280;
    --border-gray: #e5e7eb;
    --section-bg-gray: #f8fafc;
    --banner-gray: #b7b7b7;
}

html {
    scroll-behavior: smooth;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-light);
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.loaded {
    opacity: 1;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}


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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-solid {
    background-color: var(--text-white);
    color: var(--text-dark);
}

.btn-solid:hover {
    background-color: var(--accent-orange);
}

.btn-outline {
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
}

.btn-outline-dark {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.bg-white {
    background-color: #fff;
    color: var(--text-dark);
}

/* Header */
.header {
    background-color: black;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 80px;
    display: flex;
    align-items: center;
    color: var(--text-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: #ffffff;
    min-width: 240px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Dropdown Specifics */
.mega-menu {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 800px;
    padding: 32px;
}

.nav-item:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mega-menu-card {
    display: flex !important;
    gap: 16px;
    padding: 20px !important;
    border-radius: 12px;
    transition: all 0.3s ease !important;
    background-color: transparent;
    text-align: left;
}

.mega-menu-card:hover {
    background-color: var(--section-bg-gray);
    transform: translateY(-4px);
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-card-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-dark);
}

.menu-card-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
    font-weight: 400;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--text-dark) !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--section-bg-gray);
    color: var(--accent-orange) !important;
}

/* Nav CTA Button - Enhanced */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
    color: var(--text-white) !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-nav-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.btn-nav-cta:hover::after {
    left: 100%;
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    z-index: 999;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: 0.3s;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-links a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand-logo {
    max-height: 38px;
    height: 38px;
    width: auto;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
    /* Hardware acceleration for stability */
    cursor: pointer;
}

/* Subtle logo hover effect */
.logo:hover .brand-logo {
    filter: brightness(1.1);
    transform: translateZ(0);
}

/* Hero Section */
.hero {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 140px 0 40px;
    /* Balanced padding for carousel */
    position: relative;
}

/* Product Page Background */
.product-page .hero {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.3) 100%), url('../images/background.jpg');
    background-size: cover;
    background-position: center;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* better vertical alignment for img/text */
    margin-bottom: 0;
    gap: 40px;
    padding-bottom: 20px;
}

.hero-text {
    max-width: 680px;
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-white);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-img-box {
    width: 100%;
    max-width: 500px;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.product-showcase-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.hero-description {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 24px;
    /* max-width: 680px; */
}

.hero-description.secondary {
    color: #94a3b8;
    /* darker shade for hierarchy */
    margin-bottom: 40px;
    font-size: 14px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-trust {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.lifecycle .section-title {
    color: var(--text-white);
}

.lifecycle .section-subtitle {
    color: #94a3b8;
}

.complement-text {
    color: #94a3b8;
    font-size: 15px;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.trust-metrics {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark);
    background-color: #d1d5db;
    margin-left: -12px;
    background-size: cover;
    background-position: center;
}

.avatar.av1 {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&q=80&w=100');
}

.avatar.av2 {
    background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&q=80&w=100');
}

.avatar.av3 {
    background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&q=80&w=100');
}

.avatars .avatar:first-child {
    margin-left: 0;
}

.rating {
    display: flex;
    align-items: center;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 20px;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    background: var(--accent-orange);
}

.blob-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
    background: #3b82f6;
    /* Blue blob for contrast */
}

.waves-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    opacity: 0.6;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-orange) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.08;
    animation: particleFloat 30s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        background-position: 0 0;
    }

    100% {
        transform: translateY(-60px) rotate(5deg);
        background-position: 60px 60px;
    }
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.dot-1 {
    top: 20%;
    left: 15%;
    animation: floatUp 8s infinite alternate;
}

.dot-2 {
    top: 40%;
    left: 80%;
    animation: floatUp 12s infinite alternate-reverse;
}

.dot-3 {
    top: 70%;
    left: 30%;
    animation: floatUp 10s infinite alternate;
}

.dot-4 {
    top: 15%;
    left: 60%;
    animation: floatUp 15s infinite alternate-reverse;
}

.dot-5 {
    top: 85%;
    left: 75%;
    animation: floatUp 9s infinite alternate;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0.1;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 550px;
    margin-top: 30px;
    margin-bottom: -120px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    z-index: 5;
    background-color: #000;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #111;
    border-radius: 40px;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.carousel-slide.active .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
}

.slide-overlay p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 0;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--accent-orange);
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--accent-orange);
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 400px;
        margin-bottom: -100px;
    }

    .carousel-slide {
        padding: 30px;
    }

    .slide-overlay {
        padding: 20px;
    }

    .slide-overlay h3 {
        font-size: 20px;
    }

    .slide-overlay p {
        font-size: 14px;
    }

    .carousel-indicators {
        right: 30px;
        bottom: 20px;
    }
}




/* General Section */
.section {
    padding: 40px 0;
}

#problems,
#analytics {
    padding-top: 20px;
    padding-bottom: 0;
}



.section-header {
    margin-bottom: 30px;
    margin-top: 10px;
    /* Space for overlapping hero images */
}

#problems .section-header,
#analytics .section-header {
    margin-top: 0;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle.subtitle-left {
    text-align: left;
    margin-left: 0;
}

/* Solutions Section */
.solutions {
    background-color: var(--primary-light);
    padding-top: 80px;
}

.grid {
    display: grid;
    gap: 24px;
}

.features-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
    gap: 32px;
}

.feature-card {
    background-color: var(--text-white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.card-icon-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.icon {
    width: 32px;
    height: 32px;
    color: var(--text-dark);
}

.arrow-up-right {
    color: var(--text-gray);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--section-bg-gray);
    transition: all 0.3s ease;
}

.feature-card:hover .arrow-up-right {
    background-color: var(--accent-orange);
    color: var(--primary-dark);
    transform: translate(4px, -4px) rotate(15deg);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.card-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.card-tag {
    background-color: var(--section-bg-gray);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.feature-card:hover .card-tag {
    background-color: rgba(249, 115, 22, 0.2);
    color: var(--primary-dark);
}

.card-capabilities {
    margin-top: 24px;
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
}

.card-capabilities h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card-capabilities ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-capabilities li {
    font-size: 13px;
    color: var(--text-gray);
    position: relative;
    padding-left: 16px;
    line-height: 1.4;
}

.card-capabilities li::before {
    content: "•";
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.small-tag {
    background-color: #e2e8f0;
    color: #334155;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.mandatory-text {
    margin-top: 20px;
    font-size: 12px;
    font-style: italic;
    color: #475569;
    background-color: var(--section-bg-gray);
    padding: 12px;
    border-left: 3px solid var(--accent-orange);
    line-height: 1.5;
}

.banner-box {
    background-color: var(--banner-gray);
    padding: 60px 5%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 32px;
    color: var(--text-white);
    font-weight: 500;
}

.banner-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 14px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.icon-plus {
    width: 32px;
    height: 32px;
    background-color: var(--text-white);
    color: var(--banner-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 4px;
}

/* Lifecycle Section */
.lifecycle {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 20px 0 40px 0;
    /* Overrides global .section padding */
    overflow: hidden;
}

.lifecycle .section-header {
    margin-top: 0;
    /* Removes global overlapping 60px margin */
    margin-bottom: 20px;
}

.lifecycle .section-title {
    color: var(--text-white);
}

.lifecycle .section-subtitle {
    color: var(--text-gray);
}

.lifecycle-flow {
    position: relative;
    max-width: 900px;
    margin: 24px auto 0;
    /* Reduced from 40px */
    padding: 20px 0;
}

.flow-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-orange), transparent);
    transform: translateX(-50%);
}

.flow-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
    /* Reduced from 40px */
}

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

.flow-item.left {
    justify-content: flex-start;
}

.flow-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: var(--primary-dark);
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 20px;
    z-index: 2;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
}

.flow-node .node-inner {
    position: absolute;
    border: 1px dashed var(--accent-orange);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.node-inner.l1 {
    width: 70px;
    height: 70px;
    animation: spinOrbit 20s linear infinite;
}

.node-inner.l2 {
    width: 90px;
    height: 90px;
    animation: spinOrbitReverse 30s linear infinite;
}

.flow-card {
    width: 42%;
    padding: 24px 32px;
    /* Reduced from 40px */
    border-radius: 16px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.flow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.flow-card.fc-dark {
    background-color: #1e293b;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flow-card.fc-green {
    background-color: var(--accent-orange);
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.flow-card.fc-green .c-list li {
    color: #1e293b;
}

.flow-card.fc-green .c-list li::before {
    color: #1e293b;
}

.flow-card.fc-light {
    background-color: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flow-card.fc-light .c-list li {
    color: #334155;
}

.flow-card.fc-light .c-list li::before {
    color: var(--accent-orange);
}

.flow-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: inherit;
}

@media (max-width: 768px) {
    .flow-line {
        left: 40px;
        transform: translateX(-50%);
    }

    .flow-item,
    .flow-item.left {
        justify-content: flex-end;
    }

    .flow-node {
        left: 40px;
    }

    .flow-card {
        width: calc(100% - 100px);
    }
}

/* Trusted Partner Section */
.trusted {
    background-color: var(--text-white);
}

.radar-chart {
    position: relative;
    width: 100%;
    max-width: 710px;
    /* Improved compact height */
    height: 700px;
    margin: 0 auto;
}

@keyframes spinOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spinOrbitReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.circle-line {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed #000000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spinOrbit 40s linear infinite;
}

.circle-line.l1 {
    width: 150px;
    height: 150px;
    animation-duration: 25s;
}

.circle-line.l2 {
    width: 300px;
    height: 300px;
    animation: spinOrbitReverse 35s linear infinite;
}

.circle-line.l3 {
    width: 450px;
    height: 450px;
    animation-duration: 45s;
}

.circle-line.l4 {
    width: 600px;
    height: 600px;
    animation: spinOrbitReverse 55s linear infinite;
}

.data-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes uprightSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes uprightSpinReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.orbiter {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.o-l1 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 0;
    margin-top: -45px;
    margin-left: -45px;
    animation: uprightSpinReverse 25s linear infinite;
    background-color: var(--primary-dark);
    color: var(--text-white);
    border: 1px solid var(--border-gray);
    z-index: 10;
}

.o-l2 {
    width: 90px;
    height: 90px;
    top: 0;
    left: 50%;
    margin-top: -45px;
    margin-left: -45px;
    animation: uprightSpin 35s linear infinite;
    background-color: var(--text-white);
    color: var(--primary-dark);
    border: 1px solid var(--border-gray);
    z-index: 10;
}

.o-l3 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 100%;
    margin-top: -45px;
    margin-left: -45px;
    animation: uprightSpinReverse 45s linear infinite;
    background-color: var(--accent-orange);
    color: var(--primary-dark);
    z-index: 10;
}

.o-l4 {
    width: 90px;
    height: 90px;
    top: 100%;
    left: 50%;
    margin-top: -45px;
    margin-left: -45px;
    animation: uprightSpin 55s linear infinite;
    background-color: #1e293b;
    color: var(--text-white);
    border: 1px solid var(--accent-orange);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
    z-index: 10;
}

.o-title {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
    padding: 0 4px;
    color: inherit;
    line-height: 1.1;
}

.o-desc {
    font-size: 9px;
    opacity: 0.85;
    padding: 0 6px;
    line-height: 1.2;
}

/* Blog Section */
.blog {
    background-color: var(--primary-light);
}

.blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    display: flex;
    gap: 24px;
    background-color: var(--text-white);
    padding: 16px;
    border-radius: 8px;
    align-items: center;
}

.blog-img {
    width: 160px;
    height: 160px;
    background-color: #d1d5db;
    border-radius: 4px;
    flex-shrink: 0;
}

.blog-content {
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.4;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links-left {
    display: flex;
    gap: 24px;
}

.footer-links-left a {
    color: #e5e7eb;
    font-size: 14px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
    justify-content: center;
    /* flex centering for the logo in footer */
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-about {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 0;
}

.footer-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-tagline {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
}

.footer-locations {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-locations .divider {
    color: var(--accent-orange);
    margin: 0 4px;
}

.footer-email {
    color: var(--accent-orange);
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.footer-email:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom-left {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    border-color: var(--accent-orange);
    color: var(--text-white);
    background: rgba(255, 106, 0, 0.05);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 50%;
}

.secure-tag {
    display: none;
    /* Replaced by badges */
}

.footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-link {
    color: #94a3b8;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: var(--accent-orange);
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    margin-bottom: 0;
}

.footer-legal a:hover {
    color: var(--text-white);
}

/* Responsive basics */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-images {
        position: relative;
        bottom: 0;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .hero-img-card {
        max-width: calc(50% - 10px);
    }

    .hero-img-card.staggered-1,
    .hero-img-card.staggered-2,
    .hero-img-card.staggered-3 {
        margin-top: 0;
    }

    .solutions {
        padding-top: 60px;
    }

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

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

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

    .radar-chart {
        transform: scale(0.85);
        margin: -40px auto;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-right .btn {
        display: none;
    }

    /* Mobile Menu Interior Styles */
    .mobile-menu-content {
        width: 100%;
        max-width: 500px;
        padding: 100px 40px 40px; /* Space for the fixed header */
        margin: 0 auto;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    .mobile-nav-links a {
        color: var(--text-white);
        font-size: 22px;
        font-weight: 600;
        width: 100%;
        text-align: center;
        text-decoration: none;
        display: block;
        padding: 8px 0;
        transition: color 0.3s ease;
    }

    .mobile-nav-links a:hover {
        color: var(--accent-orange);
    }

    .mobile-dropdown {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-dropdown-menu {
        display: none;
        flex-direction: column;
        gap: 16px;
        margin-top: 16px;
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 12px;
        width: 100%;
    }

    .mobile-dropdown.active .mobile-dropdown-menu {
        display: flex;
    }

    .mobile-dropdown-menu a {
        font-size: 16px !important;
        font-weight: 500 !important;
        opacity: 0.8;
        display: block;
        padding: 10px 0;
    }

    /* Premium Request Demo Button in Mobile Menu */
    .btn-nav-cta {
        background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%) !important;
        color: white !important;
        padding: 16px 32px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 1.5px !important;
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4) !important;
        margin-top: 20px !important;
        border: none !important;
        width: 100% !important;
        max-width: 320px !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    #problems,
    #analytics {
        padding-top: 30px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .hero-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero-img-box {
        max-width: 100%;
        height: 300px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        align-items: center;
        text-align: center;
    }

    .banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .header-content {
        justify-content: space-between;
        /* Revert to standard for logo/toggle */
    }

    /* Mobile Menu styles — base rules set globally above, only show on mobile */

    /* Mobile Menu styles — base rules set globally above, moved to 1129px breakpoint */

    .radar-chart {
        transform: scale(0.6);
        margin: -120px auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 32px;
    }

    .footer-col {
        align-items: flex-start;
    }

    .footer-logo {
        display: flex;
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
    }
}

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

    .radar-chart {
        transform: scale(0.45);
        margin: -180px auto;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-color: var(--primary-dark);
    text-align: center;
}

.contact-section {
    background-color: var(--section-bg-gray);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background-color: white;
    padding: 60px;
    border-radius: 32px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 40px 24px;
    }
}

.contact-info-card:hover {
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.subtitle-left {
    margin-bottom: 60px;
    max-width: 100%;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

.info-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.info-icon {
    width: 56px;
    height: 56px;
    background-color: #f8fafc;
    color: var(--accent-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #f1f5f9;
}

.info-content h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-content p,
.info-content a {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.info-content a:hover {
    color: var(--accent-orange);
}

.contact-form-container {
    background: linear-gradient(145deg, #0f172a 0%, #000000 100%);
    padding: 60px;
    border-radius: 32px;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form-container::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input option {
    color: #000000;
    background-color: #ffffff;
}

.form-input::placeholder {
    color: #475569;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

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

.btn-full {
    width: 100%;
    margin-top: 30px;
    padding: 18px;
    font-size: 16px;
    background: var(--accent-orange);
    color: white;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

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

    .contact-form-container {
        padding: 40px 24px;
    }
}

/* Product Detail Sections */
.product-details {
    padding: 100px 0;
    background-color: var(--primary-light);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.detail-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.detail-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-gray);
}

.detail-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

.key-value-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
    padding: 32px;
    border-radius: 16px;
    color: var(--text-white);
    border-left: 4px solid var(--accent-orange);
}

.key-value-box h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.key-value-box p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background-color: var(--primary-dark);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.video-section {
    padding-bottom: 100px;
}

.product-showcase-img {
    border-radius: 20px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.product-showcase-img:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-section {
        padding-bottom: 60px;
    }

    .video-container {
        border-radius: 12px;
    }
}

/* Trust Strip */
.trust-strip-section {
    background-color: #020617;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.trust-strip {
    text-align: center;
}

.trust-strip p {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.trust-strip span {
    color: var(--accent-orange);
    margin: 0 16px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .trust-strip p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 20px;
    }
}

/* Standards & Compliance */
.compliance-section {
    padding: 40px 0 60px;
    background-color: var(--primary-light);
}

.compliance-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.compliance-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #fff7ed;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.compliance-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.4;
    max-width: 800px;
}

@media (max-width: 992px) {
    .compliance-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .compliance-text {
        font-size: 18px;
    }
}

/* UWIS Feature Cards */
.uwis-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.uwis-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.uwis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-orange);
}

.uwis-icon {
    width: 56px;
    height: 56px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    margin-bottom: 24px;
    transition: background 0.3s;
}

.uwis-card:hover .uwis-icon {
    background: #fff7ed;
}

.uwis-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.uwis-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

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

    .uwis-card[style*="grid-column"] {
        grid-column: span 2 !important;
    }
}

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

    .uwis-card[style*="grid-column"] {
        grid-column: span 1 !important;
    }

    .uwis-card {
        padding: 30px;
    }
}

/* Industries Page Styles */
.industries-page .product-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    padding: 160px 0 80px;
}

.industries-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.industry-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-dark);
}

.industry-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.industry-card-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.industry-card-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.industry-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
}

.industry-links a {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.industry-links a:hover {
    color: var(--accent-orange);
}

.industry-links a::after {
    content: '→';
    font-size: 14px;
    transition: transform 0.3s;
}

.industry-links a:hover::after {
    transform: translateX(4px);
}

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

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

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

/* Case Studies & Resources Page Styles */
.case-studies-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.case-study-card {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange);
}

.case-card-header {
    background: var(--primary-dark);
    padding: 24px 30px;
    color: white;
}

.case-industry {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-orange);
}

.case-metric {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.case-card-body {
    padding: 30px;
    flex-grow: 1;
}

.case-card-body h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--primary-dark);
    line-height: 1.4;
}

.case-detail-bit {
    margin-bottom: 20px;
}

.case-detail-bit strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.case-detail-bit p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

.case-card-footer {
    padding: 24px 30px;
    background: #f8fafc;
    border-top: 1px solid var(--border-gray);
}

.case-sol-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.3s;
}

.case-sol-link:hover {
    color: var(--accent-orange);
}

.case-sol-link::after {
    content: "→";
    transition: transform 0.3s;
}

.case-sol-link:hover::after {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .case-studies-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .case-study-card {
        border-radius: 16px;
    }

    .case-card-header,
    .case-card-body,
    .case-card-footer {
        padding: 20px;
    }
}

.case-quote {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-gray);
    font-style: italic;
}

.case-quote p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: var(--primary-dark) !important;
    margin-bottom: 12px !important;
}

.case-quote-author {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.resource-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange);
}

.case-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-card-content,
.resource-card-content {
    padding: 40px;
}

.resource-card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.resource-card-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

/* Team Section Styles */
.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-gray);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-orange);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background-size: cover;
    background-position: center;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.team-card p {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

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

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

/* Industry Reach Strip */
/* Industry Reach Strip - Ticker Enhancement */
.industry-reach-strip {
    background: #f8fafc;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-gray);
    overflow: hidden;
    position: relative;
}

.reach-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.reach-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    max-width: 800px;
    line-height: 1.5;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 100px;
    animation: ticker-scroll 40s linear infinite;
    padding-left: 100px;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.reach-logo-item {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

.reach-logo-item:hover {
    opacity: 1;
    color: var(--accent-orange);
    transform: scale(1.05);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .reach-logos {
        gap: 40px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 100px 0;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(33.333% - 22px);
    min-width: 300px;
}

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

.testimonial-quote::before {
    content: '"';
    font-size: 60px;
    color: var(--accent-orange);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
}

.testimonial-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.testimonial-role {
    display: block;
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 1100px) {
    .testimonial-card {
        width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
    }
}

/* Analytics Dashboard Styles */
.analytics-dashboard {
    padding: 100px 0;
    background-color: var(--primary-dark);
    color: white;
}

/* Product Overhaul Styles */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.report-item {
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

.report-item svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.management-box {
    background: #fff5f0;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    margin-top: 60px;
}

.management-box h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.management-box p {
    color: var(--primary-dark);
    font-weight: 500;
    line-height: 1.7;
}

.discipline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.discipline-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.discipline-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.discipline-icon {
    width: 64px;
    height: 64px;
    background: #fff5f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.discipline-card:hover .discipline-icon {
    background: var(--accent-orange);
    color: white;
}

.discipline-card h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 0;
}

.analytics-preview {
    background: var(--primary-dark);
    border-radius: 30px;
    padding: 60px;
    margin-top: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.analytics-preview h2 {
    color: white;
    margin-bottom: 40px;
}

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

.stat-item h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-orange);
}

/* Academy Restructure Styles */
.academy-pull-quote {
    background: #f8fafc;
    border-left: 5px solid var(--accent-orange);
    padding: 40px;
    border-radius: 0 20px 20px 0;
    margin: 40px auto 80px;
    max-width: 900px;
}

.academy-pull-quote p {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.course-card-content {
    padding: 24px;
    flex-grow: 1;
}

.course-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.level-beginner {
    background: #e0f2fe;
    color: #0369a1;
}

.level-intermediate {
    background: #fef3c7;
    color: #92400e;
}

.level-advanced {
    background: #fee2e2;
    color: #991b1b;
}

.course-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.course-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-footer {
    padding: 24px;
    border-top: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-format {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
}

.track-header {
    border-bottom: 2px solid var(--border-gray);
    padding-bottom: 12px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.track-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
}

.track-badge {
    background: var(--primary-dark);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.workflow-section {
    padding: 100px 0;
    background: #ffffff;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.workflow-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    position: relative;
    transition: all 0.4s ease;
}

.workflow-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.phase-number {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.workflow-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.workflow-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.detail-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.detail-feature-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: #fff5f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    margin-bottom: 24px;
}

.detail-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.detail-feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 1100px) {

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

@media (max-width: 650px) {

    .workflow-grid,
    .features-detailed-grid {
        grid-template-columns: 1fr;
    }
}