/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

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

.btn.primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.btn.primary:hover {
    background-color: #0056b3;
}

.btn.secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn.secondary:hover {
    background-color: #007bff;
    color: white;
}

h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #007bff;
    margin: 15px auto 0;
}

/* 导航栏样式 */
.navbar {
    backdrop-filter: blur(5px);
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.5s ease;
}

.navbar:hover {
    /* background-color: rgba(0, 0, 0, 0.9); */
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.navbar:hover .nav-links  a{
    color: #333;
    text-shadow: none;
}


.navbar:hover .nav-links  a:hover{
    color: #007bff;
    text-shadow: none;
}



.navbar:hover .nav-links  .active{
    color: #5182df;
}

.navbar:hover  .contact-phone .phone-number{
    color: #333;
}
.navbar:hover  .contact-phone .phone-icon{
    color: #333;
}



.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.navbar .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-links a.active {
    color: #007bff;
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    /* content: ''; */
    position: absolute;
    bottom: -8px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #007bff;
    border-radius: 1px;
}


.nav-links a:hover {
    color: #007bff;
}

/* 联系电话样式 */
.contact-phone {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.phone-icon {
    color: white;
    margin-right: 8px;
    transition: color 0.3s ease;
}

.phone-number {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.phone-number:hover {
    color: #007bff;
}

/* 滚动后导航栏样式 */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a {
    color: #333;
    text-shadow: none;
}

.navbar.scrolled .nav-links a.active {
    color: #007bff;
}

.navbar.scrolled .phone-icon,
.navbar.scrolled .phone-number {
    color: #333;
    text-shadow: none;
}

.navbar.scrolled .phone-number:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* 响应式设计 - 移动端隐藏联系电话 */
@media (max-width: 992px) {
    .contact-phone {
        display: none;
    }
}

/* 英雄区域样式 - 全屏轮播图 */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 轮播图容器 */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 轮播图片 */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-size: cover; */
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;

    background-size: 100% 100%;      /* 拉伸填满容器 */
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
}

/* 轮播遮罩样式已移除 */

/* 轮播指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: white;
    width: 30px;
    border-radius: 6px;
}

/* 轮播箭头 */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-arrow.prev {
    left: 30px;
}

.carousel-arrow.next {
    right: 30px;
}

/* 英雄内容 */
.carousel-slide .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.3s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

/* 淡入动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 产品中心样式 */
.products {
    padding: 100px 0;
    background-color: white;

    background: url(../images/bg11.png) center -9vh;

    /* background: url(./images/bg11.png) center 200% / 100% auto no-repeat; */

    /* background: url(./images/bg11.png) center -6% / 100% auto no-repeat, url(./images/videoframe.png) center calc(100% - 86px) / 100% auto no-repeat, #f8fbff; */
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 280px;
    width: 100%;


}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 解决方案样式 */
.solutions {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.solution-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.solution-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #007bff;
}

/* 客户案例样式 */
.cases {
    padding: 100px 0;
    background-color: white;
}

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

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 60px;
    color: #007bff;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}

.testimonial .author {
    text-align: right;
}

.testimonial .author span:first-child {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonial .author span:last-child {
    font-size: 14px;
    color: #999;
}

/* 回到顶部按钮样式 */
.to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.to-top-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* 关于我们样式 */
.about {
    padding: 100px 0;
    background-color: #f9f9f9;
}



.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007bff;
}

.info-item i {
    font-size: 20px;
}

/* 联系我们样式 */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
}

.contact-info .info-item i {
    font-size: 24px;
    color: #007bff;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    align-self: flex-start;
}

/* 已移除tabs-section相关样式 */

/* 页脚样式 */
.footer {
    background-color: #f5f7fa;
    padding: 60px 0;
    color: #333;
}

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

.footer-logo img {
    max-height: 50px;
}

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

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #165DFF;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #165DFF;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .product-grid,
    .solution-content,
    .testimonials,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

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

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

    .product-grid,
    .solution-content,
    .testimonials,
    .footer-content,
    .company-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .container {
        padding: 0 15px;
    }
}





/* 产品中心样式 */
.products {
    padding: 100px 0;
    background-color: white;
}

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

.product-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px;
    padding-bottom: 10px;
    font-size: 20px;
}

.product-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* 解决方案样式 */
.solutions {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.solution-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.solution-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #007bff;
}




/* 方案介绍 */
.xwtBWkOB .so_1UgP3 {
    padding: min(5.2rem, 78PX) min(5.5rem, 82PX) min(3.2rem, 48PX);
    box-sizing: border-box;
    text-align: center;
    white-space: pre-wrap;
}


.xwtBWkOB .so_1UgP3 span {
    font-family: PingFangSC-Semibold;
    font-size: min(3rem, 42PX);
    color: #091221;
    line-height: min(3.6rem, 54PX);
    font-weight: 600;
}



.xwtBWkOB .uEn5Ll2h {
    display: flex
;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0 min(5.5rem, 82PX);
    background-color: #fff;
}

.xwtBWkOB .uEn5Ll2h .PTzk3wI0 {
    width: 100%;
    overflow-x: scroll;
    display: flex
;
    scrollbar-width: none;
    box-shadow: none;
}
.xwtBWkOB .uEn5Ll2h .PTzk3wI0 .ant-segmented {
    box-shadow: none;
    padding: 0;
    line-height: normal;
    background-color: transparent;
    border-radius: 0;
    width: max-content;
    margin: 0 auto;
}

.xwtBWkOB .uEn5Ll2h .PTzk3wI0 .ant-segmented-group {
    box-shadow: none;
    gap: 0 min(.8rem, 12PX);
}
.ant-segmented-group {
    position: relative;
    display: flex
;
    align-items: stretch;
    justify-items: flex-start;
    width: 100%;
}

.xwtBWkOB .uEn5Ll2h .PTzk3wI0 .ant-segmented-item-selected {
    border-radius: min(1.8rem, 27PX);
    background: #f6f7fa;
    box-shadow: none;
}
.ant-segmented-item-selected {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, .05), 0 1px 4px -1px rgba(0, 0, 0, .07), 0 0 1px 0 rgba(0, 0, 0, .08);
    color: #262626;
}
.ant-segmented-item {
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: color .3s
    cubic-bezier(.645, .045, .355, 1);
}


.ant-segmented-item-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}



.xwtBWkOB .uEn5Ll2h .PTzk3wI0 .ant-segmented-item-label {
    box-shadow: none;
    padding: 0;
    line-height: normal;
}

.ant-segmented-item-label {
    min-height: 28px;
    padding: 0 11px;
    line-height: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: keep-all;
}



.xwtBWkOB .uEn5Ll2h .PTzk3wI0 .YeY_gVRh {
    padding: 0 1.6rem;
    height: min(3.6rem, 54PX);
    background: transparent;
    display: flex
;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
    color: #091221;
}

.xwtBWkOB .uEn5Ll2h .PTzk3wI0 .YeY_gVRh .uKuFcRHl {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: .2rem;
}

.xwtBWkOB .uEn5Ll2h .PTzk3wI0 .YeY_gVRh .__7H834AII {
    font-family: PingFangSC-Semibold;
    font-size: min(1.2rem, 15PX);
    line-height: min(1.6rem, 24PX);
    font-weight: 600;
}

.xwtBWkOB .uEn5Ll2h .PTzk3wI0 .YeY_gVRh:hover{
    /* color: #0056b3; */
    color: #007bff;
}

/* Segmented切换动画 */
.ant-segmented {
    position: relative;
}

.ant-segmented-group {
    position: relative;
    display: inline-flex;
    border-radius: 6px;
    overflow: hidden;
}

.ant-segmented-item {
    position: relative;
    padding: 8px 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
    z-index: 1;
}

.ant-segmented-item-selected {
    color: #007bff;
    transition: color 0.3s ease;
}

/* 添加一个伪元素作为背景滑块 */
.ant-segmented-group::after {
    content: '';
    position: absolute;
    top: 2px;
    left: var(--slider-left, 2px);
    bottom: 2px;
    width: var(--selected-width, 120px);
    background-color: #f0f7ff;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

/* 跨平台介绍样式 */
.tc-choose-st17 {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.tc-choose-st17 .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.tc-choose-st17 .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.tc-choose-st17 .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tc-choose-st17 .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 3px;
}

.tc-choose-st17 .section-title p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.tc-choose-st17 .choose-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.tc-choose-st17 .choose-left {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.tc-choose-st17 .choose-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.tc-choose-st17 .choose-img:hover {
    transform: scale(1.05);
}

.tc-choose-st17 .choose-right {
    flex: 1;
    min-width: 300px;
}

.tc-choose-st17 .choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tc-choose-st17 .choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tc-choose-st17 .choose-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.tc-choose-st17 .choose-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tc-choose-st17 .choose-info p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .tc-choose-st17 .choose-content {
        flex-direction: column;
        gap: 40px;
    }

    .tc-choose-st17 .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .tc-choose-st17 {
        padding: 80px 0;
    }

    .tc-choose-st17 .section-title h2 {
        font-size: 1.75rem;
    }

    .tc-choose-st17 .section-title p {
        font-size: 1rem;
    }

    .tc-choose-st17 .choose-item {
        padding: 15px;
    }

    .tc-choose-st17 .choose-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

.tc-choose-st17 .choose-info h4 {
        font-size: 1.1rem;
    }
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    color: #d8e2f2;
    background: #000;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(54, 116, 219, 0.1), transparent 55%),
        linear-gradient(180deg, rgba(10, 18, 30, 0.35), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: -2;
}

.navbar {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.navbar:hover,
.navbar.scrolled {
    background: rgba(5, 9, 18, 0.82);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.navbar:hover .nav-links a,
.navbar.scrolled .nav-links a,
.navbar:hover .contact-phone .phone-number,
.navbar:hover .contact-phone .phone-icon,
.navbar.scrolled .phone-icon,
.navbar.scrolled .phone-number {
    color: #edf5ff;
}

.nav-links a,
.phone-number,
.phone-icon {
    color: #edf5ff;
    text-shadow: none;
}

.nav-links a:hover,
.nav-links a.active,
.navbar:hover .nav-links .active,
.navbar.scrolled .nav-links a.active,
.phone-number:hover {
    color: #67d4ff;
}

.hero.hero-dark {
    min-height: 100vh;
    padding: 130px 0 80px;
    align-items: stretch;
    justify-content: flex-start;
    background:
        linear-gradient(180deg, rgba(6, 10, 20, 0.48) 0%, rgba(0, 0, 0, 0.82) 48%, #000 100%);
    isolation: isolate;
}

.hero-beam {
    position: absolute;
    top: -8%;
    width: 60vw;
    height: 80vh;
    border-radius: 999px;
    filter: blur(95px);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.hero-beam-left {
    left: -14vw;
    transform: rotate(20deg);
    transform-origin: top left;
    background: radial-gradient(circle at 15% 15%, rgba(160, 205, 255, 0.75) 0%, rgba(70, 135, 235, 0.4) 48%, rgba(70, 135, 235, 0) 85%);
}

.hero-beam-right {
    right: -14vw;
    transform: rotate(-20deg);
    transform-origin: top right;
    background: radial-gradient(circle at 85% 15%, rgba(160, 205, 255, 0.75) 0%, rgba(70, 135, 235, 0.4) 48%, rgba(70, 135, 235, 0) 85%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
    opacity: 0.35;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 210px);
}

.hero-copy {
    max-width: 860px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(103, 212, 255, 0.22);
    border-radius: 999px;
    color: #8dbfff;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: rgba(8, 16, 30, 0.55);
}

.hero-copy h1 {
    margin: 0 0 24px;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #ffffff 0%, #d4d7dd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
}

.hero-subtitle {
    max-width: 760px;
    margin: 0;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.75;
    font-weight: 400;
    color: #8d96a6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 42px;
}

.btn.hero-btn,
.btn.hero-btn-secondary {
    min-width: 176px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn.primary.hero-btn {
    color: #f4fbff;
    background: linear-gradient(90deg, #2d73ff 0%, #00d4ff 100%);
    box-shadow: 0 18px 45px rgba(20, 124, 255, 0.3);
}

.btn.primary.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(20, 124, 255, 0.38);
}

.btn.secondary.hero-btn-secondary {
    color: #1f5fbf;
    border: 1px solid rgba(45, 115, 255, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 242, 255, 0.92));
    box-shadow: 0 10px 24px rgba(66, 128, 216, 0.12);
}

.btn.secondary.hero-btn-secondary:hover {
    color: #114ea8;
    border-color: rgba(45, 115, 255, 0.38);
    background: linear-gradient(180deg, rgba(244, 249, 255, 1), rgba(220, 236, 255, 1));
    box-shadow: 0 14px 28px rgba(66, 128, 216, 0.18);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.hero-metric {
    padding: 22px 22px 20px;
    border: 1px solid rgba(135, 173, 255, 0.14);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 17, 28, 0.78), rgba(4, 7, 12, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-metric strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    color: #f6f9ff;
}

.hero-metric span {
    display: block;
    font-size: 14px;
    line-height: 1.75;
    color: #7f8898;
}

.products {
    position: relative;
    padding: 100px 0 120px;
    background:
        linear-gradient(180deg, #000 0%, #040916 12%, #09111c 100%);
}

.products::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(71, 121, 214, 0.16), transparent 32%),
        radial-gradient(circle at 85% 0%, rgba(0, 188, 255, 0.12), transparent 28%);
    pointer-events: none;
}

.products .container {
    position: relative;
    z-index: 1;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: -0.04em;
    color: #f7fbff;
}

h2::after {
    width: 96px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2d73ff, #00d4ff);
}

.product-grid {
    margin-top: 52px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    background: linear-gradient(180deg, rgba(15, 22, 36, 0.95), rgba(6, 11, 21, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.26);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.35);
    border-color: rgba(78, 142, 255, 0.28);
}

.product-card img {
    height: 240px;
}

.product-card h3 {
    color: #f6f9ff;
}

.product-card p {
    color: #8b95a7;
    line-height: 1.8;
}

.bg-light,
.bg-white,
.footer {
    background: #05080f !important;
    color: #c0cad9;
}

.bg-light .text-secondary,
.bg-white .text-secondary,
.footer,
.footer-links a,
.footer-social a,
.footer-copyright {
    color: #8c95a5 !important;
}

.bg-light h4 a,
.bg-white h4 a,
.bg-light a:hover,
.bg-white a:hover,
.footer-links a:hover,
.footer-social a:hover {
    color: #67d4ff !important;
}

.to-top-btn {
    background: linear-gradient(180deg, #2d73ff, #00d4ff);
    box-shadow: 0 14px 35px rgba(0, 118, 255, 0.3);
}

@media (max-width: 1200px) {
    .hero-metrics {
        grid-template-columns: 1fr;
        max-width: 540px;
    }

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

@media (max-width: 768px) {
    .navbar .container {
        padding: 12px 10px;
    }

    .hero.hero-dark {
        min-height: auto;
        padding: 120px 0 64px;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.8;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn.hero-btn,
    .btn.hero-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-metric {
        padding: 18px;
    }

    .hero-beam {
        width: 90vw;
        height: 52vh;
        filter: blur(72px);
    }

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(180deg, rgba(6, 12, 25, 0.25) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.carousel-container,
.carousel-slide {
    z-index: 0;
}

.hero-content,
.carousel-indicators,
.carousel-arrow {
    z-index: 2;
}

.carousel-slide {
    background-size: cover;
    background-position: center center;
}

.carousel-arrow {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(9, 16, 31, 0.38);
}

.carousel-arrow:hover {
    background: rgba(29, 112, 220, 0.28);
    border-color: rgba(103, 212, 255, 0.55);
}

.carousel-indicator {
    background-color: rgba(255, 255, 255, 0.26);
}

.carousel-indicator.active {
    background: linear-gradient(90deg, #2d73ff, #00d4ff);
}

.home-section {
    position: relative;
    padding: 110px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

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

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #79c8ff;
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-heading p {
    margin: 0;
    color: #8d96a6;
    font-size: 18px;
    line-height: 1.8;
}

.section-action {
    margin-top: 36px;
    text-align: center;
}

.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(45, 115, 255, 0.18);
    color: #1f5fbf;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 242, 255, 0.94));
    box-shadow: 0 10px 24px rgba(66, 128, 216, 0.12);
    transition: all 0.3s ease;
}

.section-link:hover {
    color: #114ea8;
    border-color: rgba(45, 115, 255, 0.34);
    background: linear-gradient(180deg, rgba(244, 249, 255, 1), rgba(220, 236, 255, 1));
    box-shadow: 0 14px 28px rgba(66, 128, 216, 0.18);
    text-decoration: none;
}

.section-product {
    background:
        linear-gradient(180deg, #000 0%, #030812 12%, #08101b 100%);
}

.product-grid-home .product-card {
    overflow: hidden;
}

.product-card-body {
    padding: 22px 22px 24px;
}

.product-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(45, 115, 255, 0.14);
    color: #8fcbff;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-about {
    background:
        radial-gradient(circle at 20% 0%, rgba(65, 121, 214, 0.18), transparent 28%),
        linear-gradient(180deg, #08101b 0%, #03060d 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.about-panel {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(15, 21, 34, 0.92), rgba(5, 9, 17, 0.96));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.about-panel-main {
    padding: 34px 34px 32px;
}

.about-copy {
    color: #a3adbc;
    font-size: 16px;
    line-height: 2;
}

.about-actions {
    margin-top: 28px;
}

.about-panel-side {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.about-feature {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-feature strong {
    display: block;
    margin-bottom: 10px;
    color: #f6f9ff;
    font-size: 18px;
}

.about-feature span {
    display: block;
    color: #8d96a6;
    line-height: 1.8;
}

.section-article {
    background:
        linear-gradient(180deg, #03060d 0%, #050b15 100%);
}

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

.news-card {
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(14, 20, 34, 0.94), rgba(7, 10, 18, 0.96));
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(103, 212, 255, 0.24);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: #7f8898;
    font-size: 13px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    color: #82dbff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.45;
}

.news-card h3 a {
    color: #f6f9ff;
    text-decoration: none;
}

.news-card h3 a:hover {
    color: #8fcbff;
}

.news-card p {
    margin: 0 0 22px;
    color: #8d96a6;
    line-height: 1.9;
}

.news-link {
    color: #6fd4ff;
    text-decoration: none;
}

.news-link:hover {
    color: #fff;
    text-decoration: none;
}

.section-contact {
    background:
        radial-gradient(circle at 85% 15%, rgba(45, 115, 255, 0.18), transparent 24%),
        linear-gradient(180deg, #050b15 0%, #000 100%);
}

.contact-shell {
    padding: 34px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.96), rgba(5, 8, 15, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-card {
    display: block;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(103, 212, 255, 0.32);
    background: rgba(20, 61, 126, 0.16);
    text-decoration: none;
}

.contact-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #79c8ff;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-card strong {
    display: block;
    margin-bottom: 12px;
    color: #f6f9ff;
    font-size: 22px;
    line-height: 1.5;
}

.contact-card p {
    margin: 0;
    color: #8d96a6;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .about-layout,
    .news-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .home-section {
        padding: 86px 0;
    }
}

@media (max-width: 768px) {
    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .about-panel-main,
    .contact-shell {
        padding: 24px;
    }

    .about-panel-side {
        padding: 18px;
    }

    .news-card,
    .contact-card {
        padding: 22px;
    }

    .carousel-arrow {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .carousel-arrow.prev {
        left: 14px;
    }

    .carousel-arrow.next {
        right: 14px;
    }

    .carousel-indicators {
        bottom: 18px;
    }
}

body {
    color: #1f3b63;
    background:
        linear-gradient(180deg, #f7fbff 0%, #eef6ff 48%, #f9fcff 100%);
}

body::before {
    background:
        radial-gradient(circle at 12% 10%, rgba(160, 205, 255, 0.55), transparent 26%),
        radial-gradient(circle at 88% 8%, rgba(70, 135, 235, 0.2), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(237, 246, 255, 0.12));
}

.navbar {
    background: rgba(255, 255, 255, 0.52);
    border-bottom: 1px solid rgba(70, 135, 235, 0.12);
}

.navbar:hover,
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 38px rgba(63, 111, 175, 0.12);
}

.navbar:hover .nav-links a,
.navbar.scrolled .nav-links a,
.navbar:hover .contact-phone .phone-number,
.navbar:hover .contact-phone .phone-icon,
.navbar.scrolled .phone-icon,
.navbar.scrolled .phone-number,
.nav-links a,
.phone-number,
.phone-icon {
    color: #23466f;
}

.nav-links a:hover,
.nav-links a.active,
.navbar:hover .nav-links .active,
.navbar.scrolled .nav-links a.active,
.phone-number:hover {
    color: #1677ff;
}

.hero.hero-dark {
    background:
        linear-gradient(180deg, rgba(248, 252, 255, 0.66) 0%, rgba(229, 241, 255, 0.82) 54%, rgba(246, 251, 255, 0.96) 100%);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(244, 250, 255, 0.52) 0%, rgba(235, 245, 255, 0.22) 42%, rgba(229, 241, 255, 0.34) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(225, 239, 255, 0.18) 100%);
    pointer-events: none;
}

.hero-beam-left {
    background: radial-gradient(circle at 15% 15%, rgba(160, 205, 255, 0.72) 0%, rgba(70, 135, 235, 0.28) 48%, rgba(70, 135, 235, 0) 85%);
    z-index: -2;
}

.hero-beam-right {
    background: radial-gradient(circle at 85% 15%, rgba(160, 205, 255, 0.72) 0%, rgba(70, 135, 235, 0.28) 48%, rgba(70, 135, 235, 0) 85%);
    z-index: -2;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(61, 123, 214, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 123, 214, 0.08) 1px, transparent 1px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.hero-eyebrow {
    border-color: rgba(70, 135, 235, 0.18);
    color: #3373cf;
    background: rgba(255, 255, 255, 0.7);
}

.hero-copy h1 {
    background: linear-gradient(180deg, #0f2f63 0%, #5b789a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.hero-subtitle {
    color: #617a97;
}

.hero-metric {
    border: 1px solid rgba(70, 135, 235, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.92));
    box-shadow: 0 18px 40px rgba(63, 111, 175, 0.1);
}

.hero-metric strong {
    color: #173660;
}

.hero-metric span {
    color: #68809d;
}

.carousel-arrow {
    border-color: rgba(70, 135, 235, 0.18);
    /* background: rgba(255, 255, 255, 0.72); */
    color: #2f65b2;
}

.carousel-arrow:hover {
    background: rgba(45, 115, 255, 0.16);
    border-color: rgba(45, 115, 255, 0.35);
}

.carousel-indicator {
    background-color: rgba(70, 135, 235, 0.22);
}

.section-product {
    background:
        linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.section-about {
    background:
        radial-gradient(circle at 20% 0%, rgba(160, 205, 255, 0.34), transparent 28%),
        linear-gradient(180deg, #eef6ff 0%, #f8fbff 100%);
}

.section-article {
    background:
        linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

.section-contact {
    background:
        radial-gradient(circle at 85% 15%, rgba(70, 135, 235, 0.18), transparent 24%),
        linear-gradient(180deg, #edf5ff 0%, #f8fbff 100%);
}

.section-kicker {
    color: #4280d8;
}

h2 {
    color: #123667;
}

.section-heading p,
.about-copy,
.about-feature span,
.news-card p,
.contact-card p {
    color: #66809f;
}

.product-card,
.about-panel,
.news-card,
.contact-shell,
.contact-card {
    border: 1px solid rgba(70, 135, 235, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
    box-shadow: 0 20px 50px rgba(63, 111, 175, 0.1);
}

.product-card:hover,
.news-card:hover,
.contact-card:hover {
    box-shadow: 0 24px 56px rgba(63, 111, 175, 0.16);
    border-color: rgba(70, 135, 235, 0.2);
}

.product-tag,
.news-badge {
    background: rgba(45, 115, 255, 0.1);
    color: #3776d1;
}

.product-card h3,
.about-feature strong,
.news-card h3 a,
.contact-card strong {
    color: #183963;
}

.news-meta {
    color: #7890ab;
}

.news-link {
    color: #2d73ff;
}

.news-link:hover,
.news-card h3 a:hover {
    color: #0f56da;
}

.contact-card {
    background: rgba(255, 255, 255, 0.82);
}

.contact-card:hover {
    background: rgba(234, 244, 255, 0.95);
}

.contact-label {
    color: #4280d8;
}

.bg-light,
.bg-white,
.footer {
    background: #f5faff !important;
    color: #5f7895;
}

.bg-light .text-secondary,
.bg-white .text-secondary,
.footer,
.footer-links a,
.footer-social a,
.footer-copyright {
    color: #6d84a0 !important;
}

.bg-light h4 a,
.bg-white h4 a,
.bg-light a:hover,
.bg-white a:hover,
.footer-links a:hover,
.footer-social a:hover {
    color: #1677ff !important;
}

.hero-slider {
    position: relative;
    height: min(100vh, 760px);
    min-height: 360px;
    overflow: hidden;
    background: #dfeeff;
}

.hero-slider .carousel-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(232, 243, 255, 0.18) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-slider .carousel-indicators,
.hero-slider .carousel-arrow {
    z-index: 2;
}

.hero.hero-dark {
    min-height: auto;
    padding: 72px 0 56px;
    background:
        linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.hero.hero-dark .hero-content {
    min-height: auto;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 42vh;
        min-height: 240px;
    }

    .hero.hero-dark {
        padding: 48px 0 36px;
    }
}

.inner-hero {
    position: relative;
    min-height: 360px;
    padding: 150px 0 72px;
    background-color: #dfeeff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(240, 248, 255, 0.92) 0%, rgba(222, 237, 255, 0.78) 52%, rgba(212, 231, 255, 0.72) 100%);
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.inner-hero-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(45, 115, 255, 0.16);
    background: rgba(255, 255, 255, 0.68);
    color: #3d78cd;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.inner-hero-content h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.12;
    color: #13396d;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.inner-hero-content p {
    margin: 0;
    max-width: 640px;
    color: #6280a4;
    font-size: 18px;
    line-height: 1.9;
}

.about-page {
    padding: 56px 0 96px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.about-page-shell {
    padding: 38px 40px 44px;
    border-radius: 30px;
    border: 1px solid rgba(70, 135, 235, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
    box-shadow: 0 24px 60px rgba(63, 111, 175, 0.1);
}

.about-page-header {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(70, 135, 235, 0.12);
}

.about-page-breadcrumb {
    margin-bottom: 16px;
    color: #7c91ac;
}

.about-page-breadcrumb a {
    color: #5b83bb;
}

.about-page-breadcrumb a:hover {
    color: #1677ff;
    text-decoration: none;
}

.about-page-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #3d78cd;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-page-header h2 {
    margin: 0;
    text-align: left;
}

.about-page-header h2::after {
    margin: 14px 0 0;
}

.about-page-content {
    color: #425b79;
    font-size: 16px;
    line-height: 2;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.about-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.about-page-content * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.about-page-content span[style*="nowrap"] {
    white-space: normal !important;
    text-wrap-mode: wrap !important;
}

.about-page-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .inner-hero {
        min-height: 280px;
        padding: 118px 0 44px;
    }

    .inner-hero-content p {
        font-size: 16px;
    }

    .about-page {
        padding: 34px 0 64px;
    }

    .about-page-shell {
        padding: 24px 20px 28px;
        border-radius: 22px;
    }
}

.contact-page {
    padding: 56px 0 96px;
    background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

.contact-page-shell {
    padding: 38px 40px 44px;
    border-radius: 30px;
    border: 1px solid rgba(70, 135, 235, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
    box-shadow: 0 24px 60px rgba(63, 111, 175, 0.1);
}

.contact-page-header {
    margin-bottom: 34px;
}

.contact-page-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #3d78cd;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-page-header h2 {
    margin: 0 0 12px;
    text-align: left;
}

.contact-page-header h2::after {
    margin: 14px 0 0;
}

.contact-page-header p {
    margin: 0;
    max-width: 760px;
    color: #66809f;
    line-height: 1.9;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.85fr);
    gap: 28px;
}

.contact-page-main {
    display: grid;
    gap: 26px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-info-card,
.contact-map-panel,
.contact-form-panel {
    border-radius: 26px;
    border: 1px solid rgba(70, 135, 235, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
    box-shadow: 0 18px 42px rgba(63, 111, 175, 0.08);
}

.contact-info-card {
    display: block;
    padding: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 115, 255, 0.2);
    box-shadow: 0 24px 52px rgba(63, 111, 175, 0.14);
    text-decoration: none;
}

.contact-info-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #3d78cd;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-info-card strong,
.contact-map-head h3,
.contact-form-panel-head h3 {
    display: block;
    color: #183963;
    font-size: 22px;
    line-height: 1.55;
}

.contact-info-card p,
.contact-map-head p,
.contact-form-panel-head p {
    margin: 10px 0 0;
    color: #66809f;
    line-height: 1.85;
}

.contact-map-panel,
.contact-form-panel {
    padding: 28px;
}

.contact-map-shell {
    position: relative;
    height: 320px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(73, 155, 255, 0.16), transparent 34%),
        linear-gradient(180deg, #081a33 0%, #0d2345 100%);
    border: 1px solid rgba(98, 179, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(133, 204, 255, 0.08);
}

.contact-map-grid,
.contact-map-lines,
.contact-map-radar {
    position: absolute;
    inset: 0;
}

.contact-map-grid {
    background-image:
        linear-gradient(rgba(104, 187, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(104, 187, 255, 0.14) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.55));
}

.contact-map-lines {
    background:
        linear-gradient(125deg, transparent 0 44%, rgba(104, 187, 255, 0.32) 50%, transparent 56%),
        linear-gradient(35deg, transparent 0 42%, rgba(104, 187, 255, 0.18) 48%, transparent 54%);
    opacity: 0.65;
}

.contact-map-radar::before,
.contact-map-radar::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(110, 210, 255, 0.22);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact-map-radar::before {
    width: 180px;
    height: 180px;
}

.contact-map-radar::after {
    width: 280px;
    height: 280px;
}

.contact-map-pin {
    position: absolute;
    left: 58%;
    top: 47%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(10, 33, 66, 0.88);
    border: 1px solid rgba(104, 187, 255, 0.34);
    color: #d8efff;
    box-shadow: 0 0 0 8px rgba(89, 193, 255, 0.08);
}

.contact-map-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #59c1ff;
    box-shadow: 0 0 0 6px rgba(89, 193, 255, 0.16), 0 0 18px rgba(89, 193, 255, 0.9);
}

.contact-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.map-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: #f3fbff;
    background: linear-gradient(90deg, #1f75ff 0%, #3fd2ff 100%);
    box-shadow: 0 16px 34px rgba(31, 117, 255, 0.22);
}

.map-nav-btn.secondary {
    color: #1b5fc0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 242, 255, 0.95));
    border: 1px solid rgba(45, 115, 255, 0.2);
    box-shadow: 0 12px 26px rgba(63, 111, 175, 0.1);
}

.map-nav-btn:hover,
.map-nav-btn.secondary:hover {
    text-decoration: none;
}

.contact-form-modern {
    margin-top: 22px;
}

.form-group-modern {
    margin-bottom: 18px;
}

.form-group-modern label {
    display: block;
    margin-bottom: 8px;
    color: #355881;
    font-weight: 600;
}

.form-control-modern {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(70, 135, 235, 0.14);
    background: rgba(248, 252, 255, 0.98);
    color: #1f3b63;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control-modern:focus {
    border-color: rgba(45, 115, 255, 0.35);
    box-shadow: 0 0 0 4px rgba(45, 115, 255, 0.08);
}

.textarea-modern {
    height: 140px;
    padding-top: 14px;
    resize: vertical;
}

.contact-code-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 12px;
    align-items: center;
}

.contact-code-img {
    width: 100%;
    height: 48px !important;
    border-radius: 14px;
    border: 1px solid rgba(70, 135, 235, 0.12);
    object-fit: cover;
    background: #fff;
}

.contact-submit-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 18px;
    color: #f4fbff;
    font-weight: 700;
    background: linear-gradient(90deg, #1f75ff 0%, #3fd2ff 100%);
    box-shadow: 0 16px 34px rgba(31, 117, 255, 0.2);
}

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

@media (max-width: 768px) {
    .contact-page {
        padding: 34px 0 64px;
    }

    .contact-page-shell {
        padding: 24px 20px 28px;
        border-radius: 22px;
    }

    .contact-map-panel,
    .contact-form-panel {
        padding: 20px;
    }

    .contact-map-shell {
        height: 240px;
    }

    .contact-code-row {
        grid-template-columns: 1fr;
    }

    .map-nav-btn {
        width: 100%;
    }
}

.news-page,
.news-detail-page {
    padding: 56px 0 96px;
    background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

.news-page-shell,
.news-detail-shell {
    padding: 38px 40px 44px;
    border-radius: 30px;
    border: 1px solid rgba(70, 135, 235, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
    box-shadow: 0 24px 60px rgba(63, 111, 175, 0.1);
}

.news-page-header {
    margin-bottom: 28px;
}

.news-page-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #3d78cd;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.news-page-header h2,
.news-detail-header h1 {
    margin: 0 0 12px;
    color: #13396d;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.news-page-header h2 {
    text-align: left;
}

.news-page-header h2::after {
    margin: 14px 0 0;
}

.news-page-header p {
    margin: 0;
    max-width: 760px;
    color: #66809f;
    line-height: 1.9;
}

.news-filter-bar {
    margin-bottom: 26px;
}

.sonsort {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 !important;
}

.sonsort .btn {
    margin: 0 !important;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(70, 135, 235, 0.12);
    background: rgba(248, 252, 255, 0.92);
    color: #50749f;
    box-shadow: none;
}

.sonsort .btn.btn-info {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(90deg, #1f75ff 0%, #3fd2ff 100%);
}

.sonsort .badge,
.sonsort .btn-info .badge {
    margin-left: 6px;
    border-radius: 999px;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.news-list-card {
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(70, 135, 235, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
    box-shadow: 0 18px 42px rgba(63, 111, 175, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-list-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 115, 255, 0.18);
    box-shadow: 0 24px 52px rgba(63, 111, 175, 0.14);
}

.news-list-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: #7890ab;
    font-size: 13px;
}

.news-list-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-mini-badge {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(45, 115, 255, 0.1);
    color: #3776d1;
    font-size: 12px;
}

.news-list-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.5;
}

.news-list-card h3 a {
    color: #183963;
    text-decoration: none;
}

.news-list-card h3 a:hover,
.news-list-link:hover {
    color: #0f56da;
    text-decoration: none;
}

.news-list-card p {
    margin: 0 0 18px;
    color: #66809f;
    line-height: 1.9;
}

.news-list-link {
    color: #2d73ff;
    text-decoration: none;
}

.news-page-pagination {
    margin-top: 34px;
}

.pagination {
    gap: 10px;
    flex-wrap: wrap;
}

.pagination .page-item,
.pagination .page-link,
.pagination a {
    border-radius: 999px !important;
}

.pagination .page-link {
    border: 1px solid rgba(70, 135, 235, 0.12);
    color: #4f719d;
    background: rgba(248, 252, 255, 0.92);
}

.pagination .active .page-link,
.pagination .page-link:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(90deg, #1f75ff 0%, #3fd2ff 100%);
}

.news-detail-main {
    max-width: 920px;
    margin: 0 auto;
}

.news-detail-nav {
    margin-bottom: 22px;
}

.news-detail-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(70, 135, 235, 0.12);
}

.news-detail-header h1 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.35;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #7890ab;
}

.news-detail-content {
    color: #425b79;
    font-size: 16px;
    line-height: 2;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.news-detail-content * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.news-detail-content span[style*="nowrap"] {
    white-space: normal !important;
    text-wrap-mode: wrap !important;
}

.news-detail-pager {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(70, 135, 235, 0.12);
    color: #66809f;
}

.news-detail-pager p {
    margin: 0 0 10px;
}

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

@media (max-width: 768px) {
    .news-page,
    .news-detail-page {
        padding: 34px 0 64px;
    }

    .news-page-shell,
    .news-detail-shell {
        padding: 24px 20px 28px;
        border-radius: 22px;
    }

    .news-list-card {
        padding: 22px;
    }

    .news-list-meta {
        align-items: flex-start;
        flex-direction: column;
    }
}
