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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

.cy-main-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cy-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cy-brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cy-keyword-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 700;
}

.cy-keyword-link:hover {
    color: #004999;
}

.cy-keyword-link-white {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.5);
}

.cy-inline-keyword {
    color: #0066cc;
    text-decoration: none;
}

.cy-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.cy-nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.cy-nav-link:hover, .cy-nav-link.cy-active {
    color: #0066cc;
}

.cy-contact-btn {
    background: #0066cc;
    color: #fff !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 6px;
    transition: background 0.3s;
}

.cy-contact-btn:hover {
    background: #004999;
}

.cy-hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cy-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,102,204,0.8), rgba(0,73,153,0.9));
}

.cy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.cy-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cy-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cy-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cy-btn-primary {
    background: #fff;
    color: #0066cc;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.cy-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cy-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.cy-btn-secondary:hover {
    background: #fff;
    color: #0066cc;
}

.cy-btn-light {
    background: #fff;
    color: #0066cc;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.cy-btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.cy-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cy-section-desc {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.cy-features-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cy-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cy-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.cy-feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cy-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cy-feature-text {
    color: #666;
    line-height: 1.8;
}

.cy-services-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-services-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.cy-service-item {
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cy-service-item:hover {
    border-color: #0066cc;
    box-shadow: 0 8px 20px rgba(0,102,204,0.1);
}

.cy-service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cy-service-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cy-service-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cy-service-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.cy-service-link:hover {
    color: #004999;
}

.cy-tech-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-tech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cy-tech-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cy-tech-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cy-tech-list {
    list-style: none;
    margin-bottom: 2rem;
}

.cy-tech-item {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.cy-tech-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.2rem;
}

.cy-tech-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.cy-tech-item span {
    color: #666;
    line-height: 1.6;
}

.cy-tech-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cy-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0066cc, #004999);
    color: #fff;
}

.cy-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cy-stat-card {
    text-align: center;
}

.cy-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cy-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cy-cases-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.cy-case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cy-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.cy-case-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cy-case-info {
    padding: 2rem;
}

.cy-case-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cy-case-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cy-case-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.cy-solutions-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cy-solution-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.cy-solution-card:hover {
    transform: translateY(-6px);
}

.cy-solution-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.cy-solution-title {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a1a1a;
}

.cy-solution-text {
    color: #666;
    padding: 0 1.5rem 1.5rem;
}

.cy-news-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.cy-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.cy-news-card:hover {
    transform: translateY(-6px);
}

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

.cy-news-content {
    padding: 1.5rem;
}

.cy-news-date {
    color: #999;
    font-size: 0.9rem;
}

.cy-news-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.8rem 0;
    color: #1a1a1a;
}

.cy-news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cy-news-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.cy-partners-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.cy-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.cy-partner-logo {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #666;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cy-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0066cc, #004999);
    text-align: center;
    color: #fff;
}

.cy-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cy-cta-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cy-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.cy-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.cy-footer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cy-footer-desc {
    color: #ccc;
    line-height: 1.8;
}

.cy-footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cy-footer-links {
    list-style: none;
}

.cy-footer-links li {
    margin-bottom: 0.8rem;
}

.cy-footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.cy-footer-links a:hover {
    color: #0066cc;
}

.cy-footer-contacts {
    list-style: none;
    color: #ccc;
}

.cy-footer-contacts li {
    margin-bottom: 0.8rem;
}

.cy-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

.cy-page-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cy-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cy-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.cy-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.cy-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cy-banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.cy-intro-box {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.cy-intro-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cy-intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.cy-services-detail-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.cy-service-detail-card.cy-reverse {
    direction: rtl;
}

.cy-service-detail-card.cy-reverse > * {
    direction: ltr;
}

.cy-service-detail-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cy-service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cy-service-detail-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cy-service-features {
    list-style: none;
}

.cy-service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.cy-service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.cy-service-process-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cy-process-step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cy-process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.cy-process-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.cy-process-desc {
    color: #666;
    line-height: 1.6;
}

.cy-solutions-intro-section {
    padding: 3rem 0;
    background: #fff;
}

.cy-industry-solutions-section {
    padding: 3rem 0 5rem;
    background: #fff;
}

.cy-industry-solution-block {
    margin-bottom: 5rem;
}

.cy-industry-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cy-industry-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.cy-industry-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cy-industry-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cy-reverse-block .cy-industry-content {
    direction: rtl;
}

.cy-reverse-block .cy-industry-content > * {
    direction: ltr;
}

.cy-industry-desc p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cy-industry-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.cy-industry-features {
    list-style: none;
}

.cy-industry-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.cy-industry-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.cy-industry-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cy-solution-benefits-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.cy-benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cy-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cy-benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cy-benefit-text {
    color: #666;
    line-height: 1.6;
}

.cy-tech-overview-section {
    padding: 3rem 0;
    background: #fff;
}

.cy-tech-detail-section {
    padding: 3rem 0 5rem;
    background: #fff;
}

.cy-tech-block {
    margin-bottom: 5rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.cy-tech-block:last-child {
    border-bottom: none;
}

.cy-tech-header-row {
    margin-bottom: 2rem;
}

.cy-tech-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cy-tech-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cy-tech-reverse .cy-tech-content-grid {
    direction: rtl;
}

.cy-tech-reverse .cy-tech-content-grid > * {
    direction: ltr;
}

.cy-tech-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cy-tech-sub-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.cy-tech-feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.cy-tech-feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.cy-tech-feature-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.cy-tech-feature-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.cy-tech-value-text {
    background: #f0f7ff;
    padding: 1.5rem;
    border-left: 4px solid #0066cc;
    border-radius: 6px;
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
}

.cy-tech-display-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cy-tech-architecture-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-architecture-visual {
    max-width: 1000px;
    margin: 0 auto;
}

.cy-architecture-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.cy-architecture-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cy-architecture-desc p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.cy-tech-innovation-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.cy-innovation-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s;
}

.cy-innovation-card:hover {
    border-color: #0066cc;
}

.cy-innovation-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cy-innovation-text {
    color: #666;
    line-height: 1.6;
}

.cy-cases-intro-section {
    padding: 3rem 0;
    background: #fff;
}

.cy-case-detail-section {
    padding: 3rem 0 5rem;
    background: #fff;
}

.cy-case-detail-block {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cy-case-detail-block:last-of-type {
    border-bottom: none;
}

.cy-case-header {
    margin-bottom: 2rem;
}

.cy-case-tag {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cy-case-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cy-case-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cy-case-image-wrap {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cy-case-main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cy-case-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.cy-case-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cy-case-challenges, .cy-case-solutions {
    list-style: none;
    margin: 1rem 0 2rem;
}

.cy-case-challenges li, .cy-case-solutions li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

.cy-case-challenges li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #dc3545;
}

.cy-case-solutions li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.cy-case-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.cy-result-item {
    background: #f0f7ff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #0066cc;
}

.cy-result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.cy-result-label {
    color: #444;
    font-weight: 600;
}

.cy-testimonials-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.cy-testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cy-testimonial-quote {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cy-testimonial-author {
    color: #666;
    font-weight: 600;
}

.cy-case-stats-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.cy-stat-box {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.cy-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.cy-stat-desc {
    font-size: 1.1rem;
    color: #666;
}

.cy-company-intro-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-about-intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cy-about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.cy-about-paragraph {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cy-about-company-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cy-mission-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cy-mission-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cy-mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0066cc;
}

.cy-mission-text {
    color: #666;
    line-height: 1.7;
}

.cy-timeline-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.cy-timeline::before {
    content: "";
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0066cc;
}

.cy-timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.cy-timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    text-align: right;
    padding-top: 0.3rem;
}

.cy-timeline-content {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.cy-timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.cy-timeline-desc {
    color: #666;
    line-height: 1.6;
}

.cy-team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.cy-team-member {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.cy-team-member:hover {
    transform: translateY(-6px);
}

.cy-member-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.cy-member-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #1a1a1a;
}

.cy-member-title {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cy-member-bio {
    color: #666;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cy-certifications-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cy-cert-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s, transform 0.3s;
}

.cy-cert-item:hover {
    border-color: #0066cc;
    transform: translateY(-4px);
}

.cy-cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cy-cert-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.cy-cert-desc {
    color: #666;
    line-height: 1.6;
}

.cy-culture-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-culture-layout {
    display: grid;
    gap: 3rem;
}

.cy-culture-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cy-culture-item:nth-child(even) {
    direction: rtl;
}

.cy-culture-item:nth-child(even) > * {
    direction: ltr;
}

.cy-culture-img {
    width: 100%;
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.cy-culture-heading {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cy-culture-text {
    color: #666;
    line-height: 1.7;
}

.cy-partners-showcase-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-partners-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cy-partner-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #666;
    border: 2px solid #e0e0e0;
}

.cy-contact-main-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.cy-contact-side-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.cy-contact-detail-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cy-contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cy-contact-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.cy-contact-value {
    font-size: 1.1rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cy-contact-note {
    color: #999;
    font-size: 0.9rem;
}

.cy-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cy-form-desc {
    color: #666;
    margin-bottom: 2rem;
}

.cy-contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.cy-form-group {
    margin-bottom: 1.5rem;
}

.cy-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.cy-required {
    color: #dc3545;
}

.cy-form-input, .cy-form-select, .cy-form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.cy-form-input:focus, .cy-form-select:focus, .cy-form-textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.cy-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cy-form-submit {
    width: 100%;
    background: #0066cc;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cy-form-submit:hover {
    background: #004999;
    transform: translateY(-2px);
}

.cy-service-channels-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.cy-channel-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cy-channel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cy-channel-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.cy-channel-desc {
    color: #666;
    line-height: 1.6;
}

.cy-map-section {
    padding: 5rem 0;
    background: #fff;
}

.cy-map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cy-map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.cy-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cy-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 2rem;
}

.cy-map-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cy-map-subtext {
    opacity: 0.9;
}

.cy-faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cy-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.cy-faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cy-faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cy-faq-answer {
    color: #666;
    line-height: 1.7;
}

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

    .cy-hero-title {
        font-size: 2rem;
    }

    .cy-hero-subtitle {
        font-size: 1.1rem;
    }

    .cy-section-title {
        font-size: 1.8rem;
    }

    .cy-tech-layout, .cy-service-detail-card, .cy-case-body, .cy-contact-layout, .cy-about-intro-layout, .cy-industry-content, .cy-tech-content-grid {
        grid-template-columns: 1fr;
    }

    .cy-form-row {
        grid-template-columns: 1fr;
    }

    .cy-footer-grid {
        grid-template-columns: 1fr;
    }
}