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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.3; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(to right, #4f46e5, #7c3aed, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon {
    text-shadow: 0 0 5px rgba(99, 102, 241, 0.5), 0 0 10px rgba(99, 102, 241, 0.3);
}

.neon-cyan {
    text-shadow: 0 0 5px rgba(34, 211, 238, 0.5), 0 0 10px rgba(34, 211, 238, 0.3);
}

.neon-green {
    text-shadow: 0 0 5px rgba(74, 222, 128, 0.5), 0 0 10px rgba(74, 222, 128, 0.3);
}

.neon-rose {
    text-shadow: 0 0 5px rgba(244, 63, 94, 0.5), 0 0 10px rgba(244, 63, 94, 0.3);
}

/* Header 样式 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #4f46e5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: #fbbf24;
}

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

.nav a {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #4f46e5;
    background: #f3f4f6;
}

.nav a.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    margin-left: 8px;
}

.nav a.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 移动端菜单遮罩 */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

/* 主内容区域 */
.main-content {
    padding-top: 70px;
}

/* Hero 区域 */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
    padding: 60px 0;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.hero-content h2 span {
    color: #4f46e5;
}

.hero-content p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-content p span {
    color: #4f46e5;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: white;
    color: #4f46e5;
    border: 2px solid #4f46e5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #f5f3ff;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 400px;
    width: 100%;
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #4f46e5;
    font-size: 32px;
}

.hero-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #1f2937;
}

.hero-card-list {
    list-style: none;
}

.hero-card-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #4b5563;
}

.hero-card-list li i {
    color: #22c55e;
    margin-right: 12px;
    margin-top: 4px;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    top: -40px;
    left: -40px;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: -40px;
    right: -40px;
    animation-delay: 1s;
}

/* 快速入口区域 */
.quick-entry {
    padding: 80px 0;
    background: white;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-title p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.quick-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.quick-entry-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

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

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

.quick-entry-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quick-entry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.quick-entry-card:nth-child(1):hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.quick-entry-card:nth-child(2):hover {
    border-color: rgba(34, 197, 94, 0.3);
}

.quick-entry-card:nth-child(3):hover {
    border-color: rgba(79, 70, 229, 0.3);
}

.quick-entry-card:nth-child(4):hover {
    border-color: rgba(244, 63, 94, 0.3);
}

.quick-entry-card.animate-float {
    animation: float 2.5s ease-in-out infinite;
}

.quick-entry-card:nth-child(1).animate-float {
    animation-delay: 0s;
}

.quick-entry-card:nth-child(2).animate-float {
    animation-delay: 0.3s;
}

.quick-entry-card:nth-child(3).animate-float {
    animation-delay: 0.6s;
}

.quick-entry-card:nth-child(4).animate-float {
    animation-delay: 0.9s;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-title.cyan {
    color: #06b6d4;
}

.card-title.green {
    color: #22c55e;
}

.card-title.indigo {
    color: #4f46e5;
}

.card-title.rose {
    color: #f43f5e;
}

.card-description {
    color: #6b7280;
    margin-bottom: 24px;
    font-size: 15px;
}

.card-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.card-btn.cyan {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
}

.card-btn.green {
    background: linear-gradient(to right, #22c55e, #14b8a6);
}

.card-btn.indigo {
    background: linear-gradient(to right, #4f46e5, #7c3aed);
}

.card-btn.rose {
    background: linear-gradient(to right, #f43f5e, #ec4899);
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 12px;
}

/* 产品服务区域 */
.products {
    padding: 100px 0;
    background: #f9fafb;
}

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

.products-grid.five-columns {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .products-grid.five-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.product-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.product-card.animate-float {
    animation: float 2.5s ease-in-out infinite;
}

.product-card.animate-float-delayed {
    animation: float-delayed 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.product-card:nth-child(1).animate-float {
    animation-delay: 0s;
}

.product-card:nth-child(2).animate-float {
    animation-delay: 0.25s;
}

.product-card:nth-child(3).animate-float {
    animation-delay: 0.5s;
}

.product-card:nth-child(4).animate-float {
    animation-delay: 0.75s;
}

.product-card:nth-child(5).animate-float {
    animation-delay: 1s;
}

.product-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.product-card:nth-child(1) .product-icon {
    color: #4f46e5;
}

.product-card:nth-child(2) .product-icon {
    color: #06b6d4;
}

.product-card:nth-child(3) .product-icon {
    color: #22c55e;
}

.product-card:nth-child(4) .product-icon {
    color: #f59e0b;
}

.product-card:nth-child(5) .product-icon {
    color: #f43f5e;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.product-card p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 15px;
}

.product-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #7c3aed;
}

.product-link i {
    margin-left: 8px;
    font-size: 12px;
}

/* 数据统计区域 */
.stats {
    padding: 80px 0;
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.9;
}

/* 解决方案区域 */
.solutions {
    padding: 100px 0;
    background: white;
}

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

.solution-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.solution-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.solution-card:nth-child(1) .solution-icon {
    color: #4f46e5;
}

.solution-card:nth-child(2) .solution-icon {
    color: #06b6d4;
}

.solution-card:nth-child(3) .solution-icon {
    color: #22c55e;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.solution-card > p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.solution-features {
    list-style: none;
    margin-bottom: 24px;
}

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #4b5563;
}

.solution-features li i {
    color: #22c55e;
    margin-right: 12px;
}

.solution-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.solution-link:hover {
    color: #7c3aed;
}

.solution-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(4px);
}

/* 客户评价区域 */
.testimonials {
    padding: 100px 0;
    background: #f9fafb;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #6b7280;
}

.author-info h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.author-info p {
    color: #9ca3af;
    font-size: 14px;
}

/* CTA 区域 */
.cta {
    padding: 100px 0;
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-white {
    background: white;
    color: #4f46e5;
}

.btn-white:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer 样式 */
.footer {
    background: #111827;
    color: white;
    padding: 80px 0 40px;
}

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

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

.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-contact {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

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

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.icp {
    color: #6b7280;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

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

    .hero-visual {
        order: -1;
    }

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

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

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 移动端导航 */
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav a.cta-button {
        margin: 20px 0 0;
        text-align: center;
    }
}

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

    .hero-content h2 {
        font-size: 24px;
    }

    .products-grid,
    .quick-entry-grid,
    .solutions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cta h2 {
        font-size: 28px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* 延迟动画 */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ==================== 2026 UI Refresh ==================== */
:root {
    --ui-bg: #f6f8fb;
    --ui-ink: #111827;
    --ui-muted: #5b6472;
    --ui-line: rgba(17, 24, 39, 0.1);
    --ui-panel: rgba(255, 255, 255, 0.9);
    --ui-dark: #101820;
    --ui-dark-2: #17212b;
    --ui-cyan: #00a6d6;
    --ui-lime: #84cc16;
    --ui-coral: #ff6b4a;
    --ui-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
    --ui-radius: 14px;
    --ui-ease: cubic-bezier(.2,.8,.2,1);
}

body {
    color: var(--ui-ink) !important;
    background:
        linear-gradient(180deg, #f8fbff 0%, #edf4f7 44%, #f7f8fb 100%) !important;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 8%, rgba(0, 166, 214, 0.12), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(132, 204, 22, 0.1), transparent 26%),
        repeating-linear-gradient(90deg, rgba(16, 24, 32, 0.025) 0 1px, transparent 1px 4px);
}

.header {
    background: rgba(255, 255, 255, 0.86) !important;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08) !important;
    backdrop-filter: blur(18px);
    box-shadow: none !important;
}

.header.scrolled {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08) !important;
}

.header .container {
    max-width: 1240px !important;
    height: 76px !important;
}

.logo {
    color: var(--ui-dark) !important;
    font-size: 21px !important;
    letter-spacing: 0 !important;
}

.logo i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white !important;
    background: linear-gradient(135deg, var(--ui-dark), var(--ui-cyan));
}

.nav {
    gap: 4px !important;
}

.nav a {
    color: #334155 !important;
    border-radius: 999px !important;
    padding: 9px 13px !important;
    font-size: 14px !important;
}

.nav a:hover {
    color: var(--ui-dark) !important;
    background: rgba(0, 166, 214, 0.09) !important;
}

.nav a.cta-button {
    color: white !important;
    background: linear-gradient(135deg, var(--ui-dark) 0%, #0f766e 100%) !important;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.24) !important;
}

.main-content {
    padding-top: 76px !important;
}

.hero {
    min-height: calc(100vh - 76px) !important;
    background:
        linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(23, 33, 43, 0.92)),
        linear-gradient(90deg, rgba(0, 166, 214, 0.18), rgba(132, 204, 22, 0.12)) !important;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% 42%;
    height: 72%;
    background:
        linear-gradient(135deg, rgba(0, 166, 214, 0.2), rgba(132, 204, 22, 0.14)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 14px);
    border-radius: 999px 0 0 0;
    transform: rotate(-8deg);
}

.hero-container,
.section-container {
    max-width: 1240px !important;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(44px, 7vw, 82px) !important;
    line-height: 0.98 !important;
    margin-bottom: 18px !important;
}

.hero-content h2 {
    color: #eef6f8 !important;
    font-size: clamp(28px, 4vw, 48px) !important;
    line-height: 1.08 !important;
}

.hero-content h2 span,
.gradient-text {
    background: linear-gradient(90deg, #9be7ff, #d9ff8a, #ffffff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-content p {
    color: rgba(242, 248, 250, 0.76) !important;
    font-size: 18px !important;
    max-width: 680px;
}

.hero-card,
.quick-entry-card,
.product-card,
.faq-item,
.article-detail,
.form-container,
.data-table-container {
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: var(--ui-radius) !important;
    box-shadow: var(--ui-shadow) !important;
}

.hero-card {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: white !important;
    backdrop-filter: blur(18px);
}

.hero-card h3,
.hero-card-list span {
    color: white !important;
}

.hero-card-list i {
    color: #d9ff8a !important;
}

.section-title h2 {
    color: var(--ui-dark) !important;
    font-size: clamp(30px, 4vw, 48px) !important;
    letter-spacing: 0 !important;
}

.section-title p {
    color: var(--ui-muted) !important;
}

.quick-entry,
.products {
    background: transparent !important;
}

.quick-entry-card,
.product-card {
    background: rgba(255, 255, 255, 0.88) !important;
    transition: transform 240ms var(--ui-ease), box-shadow 240ms var(--ui-ease), border-color 240ms var(--ui-ease) !important;
}

.quick-entry-card:hover,
.product-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(0, 166, 214, 0.28) !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18) !important;
}

.card-icon,
.product-icon,
.hero-card-icon {
    border-radius: 12px !important;
    background: linear-gradient(135deg, rgba(0, 166, 214, 0.12), rgba(132, 204, 22, 0.12)) !important;
    color: var(--ui-dark) !important;
}

.btn,
.card-btn,
.product-link {
    border-radius: 999px !important;
    font-weight: 700 !important;
    transition: transform 220ms var(--ui-ease), box-shadow 220ms var(--ui-ease), background 220ms var(--ui-ease) !important;
}

.btn-primary,
.card-btn,
.product-link {
    color: white !important;
    background: linear-gradient(135deg, var(--ui-dark), #0f766e) !important;
    box-shadow: 0 12px 26px rgba(15, 118, 110, 0.22) !important;
}

.btn-secondary {
    color: var(--ui-dark) !important;
    background: rgba(255, 255, 255, 0.86) !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
}

.btn:hover,
.card-btn:hover,
.product-link:hover {
    transform: translateY(-2px) !important;
}

.stats {
    background: var(--ui-dark) !important;
}

.stat-item {
    border-left: 1px solid rgba(255,255,255,0.14);
}

.stat-item h3 {
    color: #d9ff8a !important;
}

.cta {
    background:
        linear-gradient(135deg, var(--ui-dark), #17313a) !important;
    color: white !important;
}

.footer {
    background: #0d131a !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.footer-brand h3,
.footer-column h4 {
    color: #f8fafc !important;
}

.footer a:hover {
    color: #d9ff8a !important;
}

section[style*="#06b6d4"],
section[style*="#3b82f6"] {
    background:
        linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(23, 49, 58, 0.92)) !important;
}

section[style*="background: white"],
section[style*="background: #f9fafb"] {
    background: transparent !important;
}

article[style*="background: #f9fafb"],
div[style*="background: white"][style*="box-shadow"],
div[style*="background: #f9fafb"],
div[style*="background: white; border-radius"] {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: var(--ui-radius) !important;
    box-shadow: var(--ui-shadow) !important;
}

h1[style],
h2[style],
h3[style] {
    letter-spacing: 0 !important;
}

p[style*="color: #6b7280"],
span[style*="color: #9ca3af"] {
    color: var(--ui-muted) !important;
}

@media (max-width: 1024px) {
    .nav {
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(18px);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .hero {
        min-height: auto !important;
        padding: 72px 0 !important;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Page-level refresh for legacy inline pages */
.page-contact .main-content > section:first-child,
.page-about .main-content > section:first-child,
.page-faq .main-content > section:first-child,
.page-entities .main-content > section:first-child,
.page-privacy .main-content > section:first-child,
.page-terms .main-content > section:first-child,
.page-articles .main-content > section:first-child {
    background:
        linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(23, 49, 58, 0.92)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 18px) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.page-contact .main-content > section:first-child::after,
.page-about .main-content > section:first-child::after,
.page-faq .main-content > section:first-child::after,
.page-entities .main-content > section:first-child::after,
.page-privacy .main-content > section:first-child::after,
.page-terms .main-content > section:first-child::after,
.page-articles .main-content > section:first-child::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -42%;
    width: 58%;
    height: 84%;
    border-radius: 999px 0 0 0;
    background: linear-gradient(135deg, rgba(0, 166, 214, 0.22), rgba(132, 204, 22, 0.14));
    transform: rotate(-8deg);
}

.page-contact .main-content > section:first-child .section-container,
.page-about .main-content > section:first-child .section-container,
.page-faq .main-content > section:first-child .section-container,
.page-entities .main-content > section:first-child .section-container,
.page-privacy .main-content > section:first-child .section-container,
.page-terms .main-content > section:first-child .section-container,
.page-articles .main-content > section:first-child .section-container {
    position: relative;
    z-index: 1;
}

.page-contact .main-content > section:first-child h1,
.page-about .main-content > section:first-child h1,
.page-faq .main-content > section:first-child h1,
.page-entities .main-content > section:first-child h1,
.page-privacy .main-content > section:first-child h1,
.page-terms .main-content > section:first-child h1,
.page-articles .main-content > section:first-child h1 {
    font-size: clamp(40px, 6vw, 68px) !important;
    line-height: 1.02 !important;
}

.page-contact .main-content > section:first-child p,
.page-about .main-content > section:first-child p,
.page-faq .main-content > section:first-child p,
.page-entities .main-content > section:first-child p,
.page-privacy .main-content > section:first-child p,
.page-terms .main-content > section:first-child p,
.page-articles .main-content > section:first-child p {
    color: rgba(242, 248, 250, 0.78) !important;
}

.page-contact .main-content > section:not(:first-child),
.page-about .main-content > section:not(:first-child),
.page-faq .main-content > section:not(:first-child),
.page-entities .main-content > section:not(:first-child),
.page-privacy .main-content > section:not(:first-child),
.page-terms .main-content > section:not(:first-child),
.page-articles .main-content > section:not(:first-child) {
    background: transparent !important;
}

.page-contact .main-content [style*="background: white"],
.page-contact .main-content [style*="background: #f9fafb"],
.page-about .main-content [style*="background: white"],
.page-about .main-content [style*="background: #f9fafb"],
.page-faq .main-content [style*="background: white"],
.page-faq .main-content [style*="background: #f8fafc"],
.page-entities .main-content [style*="background: white"],
.page-privacy .main-content [style*="background: white"],
.page-terms .main-content [style*="background: white"],
.page-articles .main-content [style*="background: white"],
.page-articles .main-content [style*="background: #f9fafb"] {
    background: rgba(255, 255, 255, 0.92) !important;
}

.page-contact .main-content [style*="box-shadow"],
.page-about .main-content [style*="box-shadow"],
.page-faq .faq-item,
.page-entities .main-content [style*="box-shadow"],
.page-privacy .main-content .section-container > div,
.page-terms .main-content .section-container > div,
.page-articles .article-card,
.page-articles .article-detail {
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: var(--ui-radius) !important;
    box-shadow: var(--ui-shadow) !important;
}

.page-contact .main-content [style*="width: 56px"],
.page-about .main-content [style*="width: 80px"],
.page-faq .main-content [style*="fa fa-search"],
.page-entities .main-content [style*="font-size: 48px"],
.page-articles .main-content [style*="font-size: 48px"] {
    color: var(--ui-cyan) !important;
}

.page-faq input#searchInput {
    border: 1px solid rgba(255,255,255,0.28) !important;
    background: rgba(255,255,255,0.96) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.2) !important;
}

.page-faq .category-btn {
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: rgba(255,255,255,0.92) !important;
    color: var(--ui-dark) !important;
}

.page-faq .category-btn.active {
    background: linear-gradient(135deg, var(--ui-dark), #0f766e) !important;
    color: white !important;
}

.page-privacy .main-content .section-container > div,
.page-terms .main-content .section-container > div {
    background: rgba(255,255,255,0.92) !important;
    padding: 36px !important;
    border-radius: var(--ui-radius) !important;
}

.page-privacy .main-content h2,
.page-terms .main-content h2,
.page-articles .article-detail h1 {
    color: var(--ui-dark) !important;
}

.page-entities .main-content [style*="display: grid"],
.page-contact .main-content [style*="display: grid"],
.page-about .main-content [style*="display: grid"] {
    gap: 28px !important;
}

@media (max-width: 900px) {
    .page-contact .main-content [style*="grid-template-columns"],
    .page-about .main-content [style*="grid-template-columns"],
    .page-entities .main-content [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* Structured component layer */
.page-hero {
    padding: 132px 0 72px;
    color: white;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(23, 49, 58, 0.92)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 18px);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -48%;
    width: 58%;
    height: 86%;
    border-radius: 999px 0 0 0;
    background: linear-gradient(135deg, rgba(0, 166, 214, 0.22), rgba(132, 204, 22, 0.14));
    transform: rotate(-8deg);
}

.page-hero .section-container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    margin-bottom: 18px;
    letter-spacing: 0;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(242, 248, 250, 0.78);
    font-size: 19px;
}

.ui-section {
    padding: 76px 0;
    background: transparent;
}

.legal-hero {
    text-align: center;
}

.legal-hero .section-container {
    max-width: 920px;
}

.legal-document {
    max-width: 920px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.legal-section {
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
}

.legal-section h2 {
    margin-bottom: 14px;
    color: #102033;
    font-size: 24px;
    line-height: 1.35;
}

.legal-section p,
.legal-section li {
    color: #506175;
    line-height: 1.85;
}

.legal-section p {
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 12px 0 0 22px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 8px;
    background: #f5f8fb;
    color: #607084;
    line-height: 1.7;
}

.faq-hero .section-container {
    max-width: 920px;
}

.faq-search {
    position: relative;
    max-width: 640px;
    margin: 34px auto 0;
}

.faq-search i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #7b8998;
}

.faq-search input {
    width: 100%;
    min-height: 56px;
    padding: 0 22px 0 54px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    color: #102033;
    font-size: 16px;
    outline: none;
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.faq-filter-band {
    position: sticky;
    top: 70px;
    z-index: 20;
    padding: 16px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
}

.faq-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-btn {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: #f4f7fa;
    color: #4d5d70;
    font-weight: 700;
    cursor: pointer;
}

.category-btn.active,
.category-btn:hover {
    border-color: #00a8c8;
    background: #eaf9fc;
    color: #007c9b;
}

.faq-content-section {
    background: #f6f9fb;
}

.faq-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 18px;
}

.faq-toolbar button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    color: #526174;
    font-weight: 700;
    cursor: pointer;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 24px;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    border: 0;
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    background: #fbfdff;
}

.faq-q-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf9fc;
    color: #007c9b;
    font-weight: 900;
}

.faq-question-main {
    display: grid;
    gap: 6px;
}

.faq-question-main strong {
    color: #102033;
    font-size: 16px;
    line-height: 1.5;
}

.faq-question-main em {
    width: fit-content;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #607084;
    font-size: 12px;
    font-style: normal;
}

.faq-question > i {
    color: #9aa7b5;
    transition: transform .2s ease;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 70px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: #fbfdff;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    padding-top: 18px;
    color: #506175;
    line-height: 1.85;
}

.faq-empty {
    display: none;
    margin-top: 18px;
}

.faq-result-count {
    margin-top: 26px;
    color: #7c8998;
    text-align: center;
}

.entity-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 32px;
    align-items: center;
    margin-bottom: 54px;
    padding: 30px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.entity-overview h2 {
    margin: 8px 0 12px;
    color: #102033;
    font-size: 30px;
}

.entity-overview p {
    color: #607084;
    line-height: 1.8;
}

.entity-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    padding: 20px;
    border-radius: 8px;
    background: #f2fbfd;
    text-align: center;
}

.entity-stats strong {
    color: #007c9b;
    font-size: 34px;
}

.entity-stats span {
    color: #607084;
    font-weight: 700;
}

.entity-category-list {
    display: grid;
    gap: 48px;
}

.entity-category-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.entity-category-head > i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf9fc;
    color: #007c9b;
    font-size: 20px;
}

.entity-category-head h2 {
    color: #102033;
    font-size: 26px;
}

.entity-category-head p {
    color: #7c8998;
}

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

.entity-card,
.entity-faq-card {
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.entity-card h3,
.entity-faq-card h3 {
    margin-bottom: 10px;
    color: #102033;
    font-size: 20px;
}

.entity-card p,
.entity-faq-card p {
    color: #506175;
    line-height: 1.8;
}

.entity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.entity-tags span {
    padding: 5px 10px;
    border-radius: 999px;
    background: #f2f7fa;
    color: #007c9b;
    font-size: 12px;
    font-weight: 700;
}

.entity-faq {
    margin-top: 70px;
}

.entity-faq > h2 {
    margin-bottom: 24px;
    color: #102033;
    text-align: center;
    font-size: 30px;
}

.entity-faq-list {
    display: grid;
    gap: 16px;
}

.entity-faq-card h3 {
    display: flex;
    gap: 8px;
    align-items: center;
}

.entity-faq-card h3 i {
    color: #007c9b;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    gap: 48px;
    align-items: center;
}

.about-story.reverse > :first-child {
    order: 2;
}

.about-story.reverse > :last-child {
    order: 1;
}

.about-story h2 {
    margin: 8px 0 18px;
    color: #102033;
    font-size: 38px;
    line-height: 1.2;
}

.about-story p {
    margin-bottom: 14px;
    color: #506175;
    line-height: 1.85;
    font-size: 17px;
}

.about-info-card {
    padding: 34px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
    text-align: center;
}

.about-info-card i {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #eaf9fc;
    color: #007c9b;
    font-size: 30px;
}

.about-info-card h3 {
    margin-bottom: 10px;
    color: #102033;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.about-value-card {
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    text-align: center;
}

.about-value-card span {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #f2fbfd;
    color: #007c9b;
    font-size: 26px;
}

.about-value-card h3 {
    margin-bottom: 10px;
    color: #102033;
}

.about-value-card p {
    color: #607084;
    line-height: 1.75;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 22px;
    margin-top: 26px;
    padding-left: 28px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(to bottom, #00a8c8, #84cc16);
}

.about-timeline article {
    position: relative;
}

.about-timeline article::before {
    content: "";
    position: absolute;
    left: -29px;
    top: 7px;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #00a8c8;
    box-shadow: 0 0 0 2px #00a8c8;
}

.about-timeline strong {
    color: #007c9b;
    font-size: 18px;
}

.about-timeline h3 {
    margin: 4px 0;
    color: #102033;
}

.sitemap-layout {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 36px;
}

.sitemap-group {
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.sitemap-group h2 {
    margin-bottom: 18px;
    color: #102033;
    font-size: 24px;
}

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

.sitemap-link-grid a,
.sitemap-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #fbfdff;
    color: #102033;
    text-decoration: none;
    font-weight: 700;
}

.sitemap-link-grid a:hover,
.sitemap-list a:hover {
    border-color: #00a8c8;
    color: #007c9b;
}

.sitemap-link-grid i {
    color: #007c9b;
}

.sitemap-list {
    display: grid;
    gap: 10px;
}

.ui-section-alt {
    background: rgba(255,255,255,0.42);
}

.ui-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.ui-two-col.reverse > :first-child {
    order: 2;
}

.ui-two-col.reverse > :last-child {
    order: 1;
}

.ui-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #007c9b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ui-heading {
    color: var(--ui-dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.ui-copy {
    color: var(--ui-muted);
    font-size: 17px;
    line-height: 1.8;
}

.ui-panel {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--ui-radius);
    box-shadow: var(--ui-shadow);
    padding: 32px;
}

.ui-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.ui-info-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--ui-radius);
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    padding: 24px;
    transition: transform 220ms var(--ui-ease), box-shadow 220ms var(--ui-ease);
}

.ui-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ui-shadow);
}

.ui-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--ui-dark);
    background: linear-gradient(135deg, rgba(0,166,214,.14), rgba(132,204,22,.12));
    margin-bottom: 16px;
}

.ui-info-card h3,
.ui-panel h3 {
    color: var(--ui-dark);
    font-size: 18px;
    margin-bottom: 8px;
}

.ui-info-card p,
.ui-panel p {
    color: var(--ui-muted);
    line-height: 1.7;
}

.ui-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: #7a8795;
    font-size: 13px;
}

.ui-card-meta span {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    color: #007c9b;
    background: rgba(0, 166, 214, 0.1);
    font-weight: 800;
}

.ui-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: #007c9b;
    text-decoration: none;
    font-weight: 800;
}

.ui-inline-link:hover {
    color: var(--ui-dark);
}

.ui-feature-list {
    display: grid;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.ui-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #334155;
    line-height: 1.7;
}

.ui-feature-list i {
    color: #0f766e;
    margin-top: 4px;
}

.ui-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

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

.ui-mt-28 { margin-top: 28px; }
.ui-mt-38 { margin-top: 38px; }
.ui-text-center { text-align: center; }
.ui-small { font-size: 14px; }

.ui-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    color: var(--ui-dark);
    text-decoration: none;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--ui-radius);
    box-shadow: 0 10px 24px rgba(15,23,42,0.07);
}

.ui-link-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ui-shadow);
}

.ui-article {
    max-width: 880px;
    margin: 0 auto;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--ui-radius);
    box-shadow: var(--ui-shadow);
    padding: 36px;
}

.ui-article-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.ui-article-card {
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--ui-radius);
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    transition: transform 220ms var(--ui-ease), box-shadow 220ms var(--ui-ease);
}

.ui-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ui-shadow);
}

.ui-article-card img,
.ui-article-placeholder {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.ui-article-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8aa0ad;
    font-size: 56px;
    background: linear-gradient(135deg, rgba(0,166,214,.12), rgba(132,204,22,.1));
}

.ui-article-card-body {
    padding: 24px;
}

.ui-article-card h3 {
    color: var(--ui-dark);
    line-height: 1.35;
    margin-bottom: 10px;
}

.ui-article-card p {
    color: var(--ui-muted);
    line-height: 1.7;
}

.ui-article-card strong {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-top: 18px;
    color: #007c9b;
}

.ui-panel-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 12px;
}

.ui-visual-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #8aa0ad;
    font-size: 88px;
    background:
        linear-gradient(135deg, rgba(0,166,214,.08), rgba(132,204,22,.08)),
        #f6f8fb;
}

.solution-list {
    display: grid;
    gap: 54px;
}

.solution-row {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 44px;
    align-items: center;
}

.solution-row.reverse .solution-row-content {
    order: 2;
}

.solution-row.reverse .solution-visual {
    order: 1;
}

.solution-visual {
    text-align: center;
}

.empty-state {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.contact-qr {
    width: 220px;
    height: 220px;
    margin: 28px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f6f8fb;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-qr img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.contact-qr > i {
    font-size: 92px;
    color: #9aa6b2;
}

.contact-lead-form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-lead-form .form-control {
    width: 100%;
    min-height: 44px;
    padding: 11px 13px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    color: #142033;
    background: #fff;
    font: inherit;
}

.contact-lead-form textarea.form-control {
    min-height: 108px;
    resize: vertical;
}

.contact-lead-form .form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.contact-qr.compact {
    width: auto;
    height: auto;
    min-height: 74px;
    justify-content: flex-start;
    gap: 12px;
    margin: 16px 0 0;
    padding: 12px;
    border-radius: 10px;
}

.contact-qr.compact img {
    width: 54px;
    height: 54px;
}

.contact-qr.compact > i {
    font-size: 42px;
}

.contact-qr.compact span {
    color: #506176;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .ui-two-col,
    .ui-two-col.reverse {
        grid-template-columns: 1fr;
    }

    .ui-two-col.reverse > :first-child,
    .ui-two-col.reverse > :last-child {
        order: initial;
    }

    .solution-row,
    .solution-row.reverse {
        grid-template-columns: 1fr;
    }

    .solution-row.reverse .solution-row-content,
    .solution-row.reverse .solution-visual {
        order: initial;
    }

    .page-hero {
        padding: 92px 0 54px;
    }

    .legal-document {
        padding: 22px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .faq-filter-band {
        top: 0;
    }

    .faq-toolbar {
        justify-content: stretch;
    }

    .faq-toolbar button {
        flex: 1;
    }

    .faq-question {
        grid-template-columns: 32px minmax(0, 1fr) 20px;
        padding: 16px;
    }

    .faq-answer {
        padding: 0 16px 18px;
    }

    .entity-overview,
    .entity-grid {
        grid-template-columns: 1fr;
    }

    .entity-overview {
        padding: 22px;
    }

    .about-story,
    .about-value-grid {
        grid-template-columns: 1fr;
    }

    .about-story.reverse > :first-child,
    .about-story.reverse > :last-child {
        order: initial;
    }

    .about-story h2 {
        font-size: 30px;
    }

    .sitemap-link-grid {
        grid-template-columns: 1fr;
    }
}
