.product-center-page {
    background-color: #14171D;
    color: #fff;
    font-family: 'Lato', Arial, sans-serif;
    overflow-x: hidden;
}

.product-center-page .container-box {
    width: 100%;
    margin: 0 auto;
}

.product-center-page .container-padding {
    padding: 0 150px;
}


/* Button Styles */

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    min-width: 260px;
    height: 46px;
    padding: 0 40px;
    padding-left: 50px;
    background: none;
    box-shadow: 0px 5px 40px 0px rgba(15, 15, 15, 0.66);
    border-radius: 40px;
    border: 1px solid transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 12;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: linear-gradient(39deg, #3A3B6D, #66748D, #3C425A);
    border-radius: 40px;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    z-index: -1;
    background: linear-gradient(95deg, #0A0B5F 0%, rgba(37, 44, 143, 0.65) 57.99999999999999%, rgba(68, 62, 154, 0.39) 100%);
    border-radius: 40px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary-custom .btn-arrow {
    transition: transform 0.3s ease;
    position: relative;
    top: 1px;
    left: 20px;
}

.btn-primary-custom:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    min-width: 260px;
    height: 46px;
    line-height: 42px;
    padding: 0 40px;
    background: none;
    box-shadow: 0px 5px 40px 0px rgba(15, 15, 15, 0.66);
    border-radius: 40px;
    border: 1px solid #FFFFFF;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    color: #fff;
}

.cta-center {
    display: flex;
    justify-content: center;
    margin-top: 3.13rem;
}


/* Hero Section */

.product-hero {
    position: relative;
    padding: 200px 0 120px;
    text-align: center;
    overflow: hidden;
    background-size: 100% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
}

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

.hero-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    /* background: linear-gradient(180deg, #FFFFFF 0%, #E0E1E2 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    font-family: Roboto, Arial, sans-serif;
}

.hero-subtitle {
    font-size: 1.43rem;
    color: #CED3DF;
    line-height: 1.6;
    margin-bottom: 100px;
    font-weight: 400;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
    /* font-family: Roboto, Arial, sans-serif; */
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.hero-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://staticqn.booklane.cn/file/owenai/images/home_dark/bg/1.png') no-repeat center;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}


/* Video Showcase */

.video-showcase {
    margin-top: 10px;
    margin-bottom: 9.38rem;
    overflow: hidden;
    position: relative;
}

.video-grid-container {
    display: block;
    width: 100%;
}

.video-grid {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    width: max-content;
    animation: slide 40s infinite linear;
    animation-play-state: paused;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
        /* 移动到一半位置，实现无缝滚动 */
    }
}

.video-placeholder {
    height: 400px;
    width: auto;
    /* 允许宽度根据内容自适应 */
    min-width: 225px;
    /* 设置最小宽度防止加载前塌陷 */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.video-card {
    position: relative;
    flex-shrink: 0;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    z-index: 10;
    transition: opacity 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.play-icon.playing {
    opacity: 0;
    visibility: hidden;
}

.play-icon.paused {
    opacity: 1;
    visibility: visible;
}

.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.video-placeholder video {
    width: auto;
    /* 宽度由高度和比例决定 */
    height: 100%;
    /* 固定高度 */
    object-fit: contain;
    /* 确保视频内容完整显示，不被裁剪 */
    border-radius: 20px;
    display: block;
}

.video-placeholder video:not([controls])::-webkit-media-controls-panel {
    display: none !important;
}

.video-card:hover .play-icon.playing,
.workflow-video-container:hover .play-icon.playing {
    opacity: 0;
}

.video-card:hover .play-icon.paused {
    opacity: 1;
    visibility: visible;
}

.workflow-play-icon {
    opacity: 0;
    cursor: pointer;
    pointer-events: auto;
    z-index: 20;
}

.workflow-play-icon.paused {
    opacity: 1;
}

.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}


/* Fundamental Shift */

.fundamental-shift {
    /* padding: 100px 0; */
    position: relative;
}

.profile-bg-decoration {
    position: absolute;
    bottom: -18%;
    right: 2%;
    width: 70%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.trusted-bg-decoration {
    position: absolute;
    bottom: -5%;
    right: 25%;
    width: 56%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}

.profile-bg-decoration2 {
    position: absolute;
    bottom: 13%;
    right: 20%;
    width: 60%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.section-title {
    font-size: 2.3vw;
    font-weight: 700;
    text-align: center;
    margin-bottom: 7.14rem;
    line-height: 1.2;
}

.roles-layout {
    display: flex;
    flex-direction: column;
    gap: 3.13rem;
    margin-bottom: 30px;
}

.role-row {
    width: 100%;
}

.role-card {
    border-radius: 20px;
    padding: 30px 40px;
    /* max-width: 1000px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: none;
    box-shadow: 0px 8px 29px 1px rgba(58, 43, 99, 0.14);
    border: none;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    /* background: linear-gradient(10deg, #14171D 0, #55547B 80%,#494B74 100%); */
    background: linear-gradient(to top, #303F51bb 0, #C1C5FFbb 50%, #484D73 100%);
    border-radius: 20px;
}

.role-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    z-index: -1;
    /* background: rgba(20, 23, 29, 0.9); */
    background: #1E2027;
    border-radius: 20px;
}

.user-role {
    /* border-left: 4px solid #4DB4E7; */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ai-role {}

.role-info {
    flex: 1;
}

.role-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.role-label {
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
}

.role-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0px 7px 25px rgba(56, 56, 56, 0.42);
    background: linear-gradient(92deg, #6C41EF 15.4541015625%, #20B0E2 76.5625%, #40A1FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-role .role-name {
    color: #6C41EF;
}

.role-desc {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin: 0;
}

.role-action-box {
    padding: 20px 30px;
    border-radius: 12px;
    font-family: Roboto, Arial, sans-serif;
}

.role-action-text {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.role-top-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 16px;
    padding-right: 50px;
    padding-top: 30px;
}

.ai-role .role-info {
    flex: 1;
}

.workflow-video-container {
    flex: 1;
    position: relative;
    aspect-ratio: 16 / 9;
    /* overflow: hidden; */
    z-index: 3;
}

.workflow-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.workflow-video-container .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
}

.workflow-video-container .nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.workflow-video-container .nav-arrow.disabled {
    opacity: 0.2;
    pointer-events: none;
    cursor: not-allowed;
}

.workflow-video-container .nav-arrow img {
    width: 30px;
    height: 30px;
}

.workflow-video-container .nav-arrow.left {
    left: -50px;
}

.workflow-video-container .nav-arrow.right {
    right: -50px;
}

.workflow-progress-area {
    /* padding: 0 40px; */
    margin-top: 16px;
}

.workflow-progress-line {
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    border-radius: 2px;
}

.progress-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #444;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #14171D;
}

.progress-dot.active {
    /* background: #6C41EF; */
    /* box-shadow: 0 0 15px rgba(108, 65, 239, 0.6); */
    background: #FFFFFF;
    border: 4px solid #626368;
    width: 16px;
    height: 16px;
}

.progress-active-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #eee;
    transition: width 0.3s ease;
    z-index: 1;
    border-radius: 2px;
}

.workflow-steps {
    position: relative;
    height: 40px;
    margin-top: 20px;
}

.workflow-step {
    position: absolute;
    top: 0;
    transform: translateX(-7px);
    font-size: 14px;
    color: #999999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.workflow-step.active {
    color: #fff;
    font-weight: bold;
}

.workflow-step[data-step="0"] {
    left: 0%;
}

.workflow-step[data-step="1"] {
    left: 16.666%;
}

.workflow-step[data-step="2"] {
    left: 33.333%;
}

.workflow-step[data-step="3"] {
    left: 50%;
}

.workflow-step[data-step="4"] {
    left: 66.666%;
}

.workflow-step[data-step="5"] {
    left: 83.333%;
}

.workflow-step[data-step="6"] {
    left: 100%;
}

.progress-dot.last-arrow {
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-dot.last-arrow .arrow-icon {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 16px solid #fff;
    transition: all 0.3s ease;
    display: block;
    transform: translateX(5px);
}

.progress-dot.last-arrow.active .arrow-icon {
    border-left-color: #fff;
}


/* How to use */

.how-to-use {
    /* padding: 120px 0; */
    position: relative;
    background: #14171D;
    overflow: hidden;
    padding-top: 4rem;
    margin-bottom: 3.38rem;
    padding-bottom: 0rem;
}

.how-to-use .section-title {
    margin-bottom: 2.14rem;
}

.how-to-use .section-subtitle {
    font-family: Roboto;
    font-weight: 400;
    font-size: 1.29rem;
    color: #BBBBBB;
    text-align: center;
}

.how-to-use::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 180, 231, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.how-to-use::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 65, 239, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.how-to-use .container-box {
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: flex;
    gap: 40px;
    margin-top: 5.25rem;
    overflow-x: hidden;
    overflow-y: visible;
    flex-wrap: nowrap;
    padding-bottom: 50px;
    margin-bottom: 50px;
    width: 100%;
    cursor: pointer;
    padding-left: 150px;
    padding-top: 40px;
    position: relative;
}

.steps-grid::before{
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
    display: inline-block;
    height: 0.29rem;
    width: 100%;
    background-color: #D1DCEE;
}
/* .steps-grid::-webkit-scrollbar {
    height: 8px;
} */

.steps-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.steps-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.steps-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.step-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: auto;
    max-width: 500px;
    position: relative;
}
.step-card::before{
    position: absolute;
    top: -30px;
    left: 0;
    content: "";
    display: inline-block;
    height: 0.29rem;
    width: 100%;
    background-color: #D1DCEE;
}
.step-num {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2.14rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Roboto, Arial, sans-serif;
    position: relative;
}

.step-num::after {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #20AFE1;
    display: inline-block;
    position: absolute;
    top: -38px;
    left: 0;
    content: '';
    z-index: 100;
}


/* .step-card:nth-child(1) .step-num::after,
.step-card:nth-child(2) .step-num::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('../images/product/step_icon.png') no-repeat center;
    background-size: contain;
} */

.step-title {
    font-size: 1.71rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    height: auto;
    display: block;
    color: #fff;
    line-height: 1.4;
    /* height: 48px; */
    font-family: Roboto, Arial, sans-serif;
    margin-top: 5px;
}

.step-image-placeholder {
    width: 100%;
    /* max-width: 500px; */
    /* height: 300px; */
    height: 26rem;
    /* background: #D9E1EB; */
    border-radius: 0.71rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.step-image-placeholder img {
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
    display: block;
    -webkit-user-drag: none;
    cursor: pointer;
}

.step-card:hover .step-image-placeholder {
    transform: translateY(-5px);
}

.step-desc {
    font-size: 14px;
    color: #AAAAAA;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 10px;
}

.step-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.action-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-header {
    display: flex;
    gap: 8px;
    align-items: center;
}

.action-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.action-label {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    font-family: Roboto, Arial, sans-serif;
    white-space: nowrap;
}

.action-text {
    font-size: 13px;
    color: #999999;
    line-height: 1.5;
    margin: 0;
    font-family: Roboto, Arial, sans-serif;
    /* padding-left: 32px; */
    word-break: break-word;
    overflow-wrap: break-word;
}


/* Who benefits */

.who-benefits {
    /* padding: 100px 0; */
    position: relative;
    overflow: hidden;
    margin-bottom: 8rem;
    padding-top: 0;
}

.who-benefits::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 180, 231, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.who-benefits::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 65, 239, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.who-benefits .benefit-grid,
.who-benefits .section-title,
.who-benefits .cta-center {
    position: relative;
    z-index: 2;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 5.5rem;
}

.benefit-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: none;
    border: none;
    border-radius: 20px;
    padding: 50px 20px;
    padding-bottom: 36px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    /* background: linear-gradient(to top, #2C2E35, #4F5169, #474B73); */
    background: linear-gradient(to top, #303F51bb 0, #C1C5FFbb 50%, #484D73 100%);
    border-radius: 20px;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    z-index: -1;
    background: #1A1D24;
    border-radius: 20px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #33B6E6;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.benefit-list li {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-list li .icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}


/* Success Stories */

.product-success-stories {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
    padding-top: 5rem;
}

.profile-bg-decoration3 {
    position: absolute;
    bottom: -12%;
    right: 10%;
    width: 65%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.product-success-stories::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 40%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 65, 239, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.stories-scroll-wrapper {
    overflow: hidden;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.stories-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.stories-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.stories-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.stories-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.stories-grid-new {
    display: flex;
    gap: 40px;
    padding-left: 150px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: max-content;
}

.story-card-new {
    flex: 0 0 360px;
    background: transparent;
    transition: transform 0.3s ease;
    text-decoration: none !important;
    display: block;
}

.story-card-new:hover {
    transform: translateY(-10px);
}

.story-image-placeholder {
    width: 100%;
    aspect-ratio: 400 / 360;
    background: #D9E1EB;
    border-radius: 20px;
    margin-bottom: 24px;
    overflow: hidden;
}

.story-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-info {
    padding: 0;
    text-align: left;
}

.story-name {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
    font-family: Roboto, Arial, sans-serif;
    line-height: 1.4;
}

.story-desc {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
    /* font-family: Roboto, Arial, sans-serif; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Human Strategy, AI Execution Section */

.human-strategy-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #14171D;
    padding-top: 50px;
}

.human-strategy-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 180, 231, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.human-strategy-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 65, 239, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.strategy-title {
    font-size: 3.43rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-family: Roboto, Arial, sans-serif;
}

.strategy-subtitle {
    font-size: 1.29rem;
    color: #BBBBBB;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.strategy-container {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
}

.strategy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(to top, #303F51bb 0, #C1C5FFbb 50%, #484D73 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.strategy-container::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    z-index: -1;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.strategy-column {
    flex: 1;
}

.column-header {
    margin-bottom: 20px;
}

.column-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    font-family: Roboto, Arial, sans-serif;
    background: linear-gradient(92deg, #6C41EF 15.45%, #20B0E2 76.56%, #40A1FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.human-responsibilities .column-title {
    color: #2CAFEF;
}

.ai-responsibilities .column-title {
    color: #9E7FEF;
}

.responsibility-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.responsibility-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-header {
    display: flex;
    gap: 8px;
    align-items: center;
}

.item-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-title {
    font-size: 1.29rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    font-family: Roboto, Arial, sans-serif;
}

.item-subtitle {
    font-size: 1.29rem;
    font-weight: 400;
    color: #fff;
    font-family: Roboto;
    margin-bottom: 0px;
}

.item-desc {
    font-family: Roboto;
    font-weight: 400;
    font-size: 1.29rem;
    color: #BBBBBB;
    margin: 0;
}

.strategy-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    flex-shrink: 0;
}


/* Beyond Tools Section - Reuses strategy styles */

.beyond-tools-section {
    padding: 80px 0;
    padding-top: 0rem;
    position: relative;
    overflow: hidden;
    background-color: #14171D;
}

.beyond-tools-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 180, 231, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.beyond-tools-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 65, 239, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.tool-centric .column-title,
.runnax-os .column-title {
    background: linear-gradient(92deg, #6C41EF 15.45%, #20B0E2 76.56%, #40A1FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (max-width: 991px) {
    .beyond-tools-section .strategy-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    .beyond-tools-section .strategy-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
}

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

@media (max-width: 991px) {
    .strategy-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    .strategy-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
    .strategy-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .human-strategy-section {
        padding: 60px 0;
    }
    .strategy-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .strategy-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .strategy-container {
        padding: 20px;
    }
    .column-title {
        font-size: 18px;
    }
    .responsibility-list {
        gap: 24px;
    }
}


/* Image Zoom Modal Styles */

.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.image-zoom-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-zoom-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-modal-content {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.image-zoom-modal.active .zoom-modal-content {
    transform: scale(1);
}

.close-zoom {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 200;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 50px;
    padding-bottom: 4px;
    /* Offset for &times; vertical alignment */
}


/* .close-zoom:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
} */

.zoomable-image {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zoomable-image:hover {
    transform: scale(1.03);
}

@media (max-width: 767px) {
    .close-zoom {
        top: 20px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        padding-bottom: 3px;
    }
    .zoom-modal-content {
        max-width: 95%;
    }
}


/* Scroll Reveal Animations */

.reveal-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.reveal-on-scroll.fade-up {
    transform: translateY(50px);
}

.reveal-on-scroll.fade-down {
    transform: translateY(-50px);
}

.reveal-on-scroll.fade-left {
    transform: translateX(-50px);
}

.reveal-on-scroll.fade-right {
    transform: translateX(50px);
}

.reveal-on-scroll.zoom-in {
    transform: scale(0.9);
}

.reveal-on-scroll.reveal-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
}


/* Delay classes for staggered animations */

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}


/* Hero Section Special Animation */

.hero-title,
.hero-subtitle,
.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-buttons {
    animation-delay: 0.5s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0.8;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


/* Trusted by Innovators Section */

.trusted-innovators-section {
    padding: 80px 0;
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
    background-color: #14171D;
}

.trusted-innovators-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 180, 231, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.trusted-innovators-section .section-title {
    font-size: 3.43rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-family: Roboto, Arial, sans-serif;
}

.trusted-innovators-section .section-subtitle {
    font-size: 1.29rem;
    color: #BBBBBB;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    max-width: 1000px;
}

.innovators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.innovator-card {
    border-radius: 0.71rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.23rem;
    gap: 15px;
}

.card-title {
    font-size: 1.71rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    font-family: Roboto, Arial, sans-serif;
    flex: 1;
}

.company-logo {
    height: 26px;
    flex-shrink: 0;
}

.card-content {
    padding-top: 1.23rem;
}

.challenge-label,
.solution-label,
.outcome-label {
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 2px !important;
}

.outcome-label {
    margin-bottom: 0;
}

.challenge-label strong,
.solution-label strong,
.outcome-label strong {
    color: #999999;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .innovators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .trusted-innovators-section {
        padding: 60px 0;
    }
    .trusted-innovators-section .section-title {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }
    .trusted-innovators-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    .innovators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .card-header {
        padding: 20px 20px 0 20px;
    }
    .card-content {
        padding: 16px 20px 20px 20px;
    }
    .challenge-label,
    .solution-label,
    .outcome-label {
        font-size: 12px;
        margin: 0 0 10px 0;
    }
}

/* ========================================
   Mobile Phone Styles (max-width: 480px)
   ======================================== */

@media (max-width: 480px) {
    /* Container Padding */
    .product-center-page .container-padding {
        padding: 0 20px;
    }

    /* Hero Section */
    .product-hero {
        padding: 120px 0 60px;
        background-size: cover !important;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.6;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 280px;
        min-width: unset;
        height: 44px;
        font-size: 15px;
        padding: 0 25px;
    }

    .btn-primary-custom {
        padding-left: 25px;
    }

    /* Section Titles */
    .section-title {
        font-size: 26px !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .strategy-title {
        font-size: 26px !important;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .strategy-subtitle {
        font-size: 14px !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* Strategy Container */
    .strategy-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .strategy-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }

    .column-title {
        font-size: 16px;
    }

    .responsibility-list {
        gap: 16px;
    }

    .item-title {
        font-size: 16px;
    }

    .item-subtitle {
        font-size: 14px;
    }

    .item-desc {
        font-size: 13px;
    }

    /* How to Use Section */
    .how-to-use {
        padding-top: 3rem;
        padding-bottom: 0;
    }

    .how-to-use .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 30px;
        padding: 20px !important;
        padding-bottom: 30px !important;
        overflow-x: visible;
        margin-top: 2rem;
    }

    .steps-grid::before {
        display: none;
    }

    .step-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    .step-card::before {
        display: none;
    }

    .step-num {
        font-size: 20px;
    }

    .step-num::after {
        width: 12px;
        height: 12px;
        top: -25px;
        display: none;
    }

    .step-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .step-image-placeholder {
        height: 180px;
        margin-bottom: 12px;
    }

    .step-actions {
        gap: 12px;
    }

    .action-label {
        font-size: 12px;
    }

    .action-text {
        font-size: 12px;
    }

    /* Beyond Tools Section */
    .beyond-tools-section {
        padding: 60px 0;
    }

    .beyond-tools-section .strategy-container {
        padding: 20px;
    }

    /* Trusted Innovators Section */
    .trusted-innovators-section {
        padding: 60px 0;
    }

    .trusted-innovators-section .section-title {
        font-size: 24px;
        padding: 0 15px;
    }

    .trusted-innovators-section .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .innovators-grid {
        padding: 0 20px;
    }

    .card-image {
        height: 160px;
    }

    .card-title {
        font-size: 18px;
    }

    .company-logo {
        height: 20px;
    }

    /* Human Strategy Section */
    .human-strategy-section {
        padding: 60px 0;
    }

    /* FAQ and Contact sections */
    .faq-section,
    .contact-us {
        padding: 60px 0;
    }
}

/* ========================================
   Small Mobile Styles (max-width: 375px)
   ======================================== */

@media (max-width: 375px) {
    .hero-title {
        font-size: 26px !important;
    }

    .hero-subtitle {
        font-size: 13px !important;
    }

    .section-title {
        font-size: 22px !important;
    }

    .strategy-title {
        font-size: 22px !important;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        font-size: 14px;
    }

    .step-title {
        font-size: 18px;
    }

    .trusted-innovators-section .section-title {
        font-size: 20px;
    }
}

/* ========================================
   Tablet Styles (min-width: 481px and max-width: 768px)
   ======================================== */

@media (min-width: 481px) and (max-width: 768px) {
    .product-center-page .container-padding {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 40px;
    }

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

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

    .steps-grid {
        padding: 30px 40px !important;
    }

    .step-card {
        width: 320px;
    }

    .step-image-placeholder {
        height: 200px;
    }

    .innovators-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

/* Fix for steps grid horizontal scroll on mobile */
@media (max-width: 767px) {
    .steps-grid {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .step-card {
        flex-shrink: 0 !important;
        width: 85vw;
        max-width: 320px;
        scroll-snap-align: center;
    }

    .steps-grid::-webkit-scrollbar {
        display: none;
    }
}

/* Fix for image zoom modal on mobile */
@media (max-width: 480px) {
    .image-zoom-modal {
        padding: 20px;
    }

    .close-zoom {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .modal-zoom-container {
        max-width: 95%;
        max-height: 80vh;
    }

    .zoom-modal-content {
        max-width: 100%;
        max-height: 70vh;
    }
}

/* Mobile Hero Background Fix */
@media (max-width: 768px) {
    .product-hero {
        background-size: cover !important;
        background-position: center center !important;
    }
}