@charset "UTF-8";
/* CSS Document */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-deep: #001B48;
            --tech-blue: #00AEEF;
            --dark-bg: #0A1633;
            --dark-hero: #020B1F;
            --neon-purple: #d946ef; 
            --neon-cyan: #06b6d4;
            --orange: #f97316;
            --white: #ffffff;
            --light-gray: #F4F7FA;
            --text-dark: #1E293B;
            --text-light: #F8FAFC;
        }

        body {
            font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

.fwhite{
	color: #fff!important;
}
.headNav{
	width:200px
}
.headNav a{
    line-height: 60px;
    float: right;
    margin-right: 20px;
    color: #fff;
    font-size: 16px;
	font-weight:bold;
    font-family: "microsoft yahei";
	text-align:center;
	border-bottom:0px solid #004666; 
	padding-left:10px;
	padding-right:10px;
	margin-top:10px;
	height:50px;
	cursor:pointer;	
	/******小手不显示*******/
}
.headNav a.currentNav,.headNav a:hover,.headNav a:hover{
	cursor:pointer;
    border-bottom:5px solid #fff; 
	color: #fff;
}
.wh{
	width:100%;
}
.wh img{
	width:100%;
}

 .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: rgba(10, 22, 51, 0.95);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .nav-container {
      max-width: 66%;
      margin: 0 auto;
      height: 100%;
      line-height: 80px;
      align-items: center;
      padding: 0 20px;
    }

    /* Logo */
    .logo {
      color: #00aeef;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 1px;
      margin-right: 60px;
    }

    /* 菜单列表 */
    .nav-menu {
      display: flex;
      list-style: none;
      height: 100%;
	  float: right;
    }

    .nav-item {
      position: relative;
      height: 100%;
    }

    .nav-link {
      display: flex;
      align-items: center;
      height: 100%;
      padding: 0 24px;
      color: #eaeaea;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .nav-link:hover {
      color: #00aeef;
      background: #16213e;
    }

    .nav-link.active {
      color: #00aeef;
      background: #16213e;
    }

    /* 下拉箭头 */
    .nav-link .arrow {
      margin-left: 6px;
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid currentColor;
      transition: transform 0.3s ease;
    }

    .nav-item:hover .arrow {
      transform: rotate(180deg);
    }

    /* 二级菜单 */
    .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: rgba(10, 22, 51, 0.85);
      border-radius: 0 0 8px 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.25s ease-out;
      overflow: hidden;
    }

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

    .submenu::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #00aeef, #667eea);
    }

    .submenu-item {
      display: block;
      padding: 14px 24px;
      color: #eaeaea;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.2s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .submenu-item:last-child {
      border-bottom: none;
    }

    .submenu-item:hover {
      color: #00aeef;
      background: rgba(0, 217, 255, 0.1);
      padding-left: 30px;
    }

    /* 主内容区域 */
    .main-content {
      padding-top: 100px;
      text-align: center;
      color: white;
    }

    .main-content h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    }

    .main-content p {
      font-size: 18px;
      opacity: 0.9;
    }

    /* 移动端菜单按钮 */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      cursor: pointer;
      margin-left: auto;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      background: #eaeaea;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

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

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

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

    /* 响应式设计 */
    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #1a1a2e;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      .nav-menu.active {
        max-height: 500px;
      }

      .nav-item {
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .nav-link {
        height: 50px;
        justify-content: center;
      }

      .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
        box-shadow: none;
      }

      .submenu::before {
        display: none;
      }

      .nav-item.active .submenu {
        max-height: 300px;
      }

      .submenu-item {
        padding: 12px 40px;
      }

      .submenu-item:hover {
        padding-left: 45px;
      }

      .nav-link .arrow {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        border-bottom: none;
      }

      .nav-item:hover .arrow,
      .nav-item.active .arrow {
        transform: rotate(180deg);
      }
    }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(180deg, var(--dark-hero) 0%, var(--dark-bg) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(217, 70, 239, 0.1) 0%, transparent 40%),
                radial-gradient(ellipse at 20% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            position: relative;
        }

        .hero-title {
            font-size: 72px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 30px;
            letter-spacing: 8px;
            text-shadow: 0 0 60px rgba(0, 174, 239, 0.5);
        }

        .hero-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--tech-blue), #0080cc);
            color: var(--white);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 5px 30px rgba(0, 174, 239, 0.4);
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(0, 174, 239, 0.5);
        }

        .infinity-symbol {
            position: absolute;
            width: 600px;
            height: 600px;
            opacity: 0.15;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* AI Models Section */
        .ai-models {
            background: var(--white);
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 50px;
        }

        .models-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .model-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            background: var(--light-gray);
            border-radius: 10px;
            font-weight: 500;
            color: var(--text-dark);
            transition: all 0.3s;
        }

        .model-item:hover {
            background: var(--primary-deep);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 27, 72, 0.2);
        }

        /* Partners Section */
        .partners {
            background: var(--white);
            padding: 80px 0;
        }

        .partners-intro {
            max-width: 1100px;
            margin: -40px auto 60px;
            padding: 0 20px;
            text-align: center;
        }

        .partners-intro p {
            font-size: 16px;
            color: #64748B;
            line-height: 1.8;
        }

        /* Partners Carousel */
        .partners-carousel {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            align-items: center;
        }

        .partner-card {
            padding: 40px 30px;
            border-radius: 20px;
            color: var(--white);
            text-align: center;
            transition: all 0.4s ease;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .partner-card.prev,
        .partner-card.next {
            transform: scale(0.75);
            opacity: 0.5;
            margin: 0 -30px;
        }

        .partner-card.active {
            transform: scale(1.1);
            z-index: 10;
        }

        .partner-card:hover {
            transform: translateY(-5px);
        }

        .partner-card.active:hover {
            transform: scale(1.1) translateY(-5px);
        }

        .partner-card.azure {
            background: linear-gradient(135deg, #0078D4, #00a4ef);
        }

        .partner-card.aws {
            background: linear-gradient(135deg, #FF9900, #FFB84D);
        }

        .partner-card.google {
            background: linear-gradient(135deg, #4285F4, #34A853);
        }

        .partner-logo {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .partner-tag {
            font-size: 14px;
            opacity: 0.9;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dot.active {
            background: var(--tech-blue);
            transform: scale(1.2);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 20;
        }

        .carousel-btn:hover {
            background: var(--tech-blue);
            color: var(--white);
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }

        .carousel-btn svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Solutions Section */
        .solutions {
            background: linear-gradient(180deg, #1340BB 0%, #64D1FA 100%);
            padding: 80px 0;
        }

        .solutions .section-title {
            color: var(--primary-deep);
        }

        .solutions-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .solution-card {
            background: var(--white);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .solution-icon {
            width: 100%;
            height: auto;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .solution-icon img {
            width: 100%;
            height:auto;
			margin-bottom: 10px;
        }

        .solution-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-deep);
            margin-bottom: 5px;
        }

        .solution-card p {
            font-size: 14px;
            color: #64748B;
            line-height: 1.6;
        }

        /* Network Section */
        .network {
            background: url("../images/bg_net.png") no-repeat bottom ;
			background-size: 100%;
            padding: 80px 0;
        }

        .network-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .network-card {
            padding: 40px;
            border-radius: 20px;
            color: var(--white);
            transition: transform 0.3s;
        }

        .network-card:hover {
            transform: translateY(-5px);
        }

        .network-card.sdwan {
            background: linear-gradient(135deg, #4498E1, #64D1FA);
        }

        .network-card.cloud-connect {
            background: linear-gradient(135deg, #4498E1, #64D1FA);
        }

        .network-card.cdn {
            background: linear-gradient(135deg, #AA6CDC, #2F74FE);
        }

        .network-card.cloudflare {
            background: linear-gradient(135deg, #FF7F4E, #FFCE6E);
        }

        .network-card h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .network-card p {
            font-size: 15px;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Database Section */
        .database {
            background:#154CCB url("../images/bg_db.jpg") no-repeat bottom;
			background-size: 100%;
            padding: 80px 0;
            position: relative;
        }

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

        .database-list {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .database-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 30px 40px;
            border-radius: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }

        .database-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
        }
		.database-item img{
			width:90px;
			height:90px;
			margin-right: 15px;
		}

        .database-info h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 8px;
        }

        .database-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .database-arrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .database-arrow svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

        /* SMS Section */
        .sms {
            background: var(--white);
            padding: 80px 0;
            position: relative;
        }

        .sms-stats {
            max-width: 1200px;
            margin: 0 auto 50px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-box {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, #4498E1, #64D1FA);
            border-radius: 15px;
            color: var(--white);
            transition: transform 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }

        .sms-features {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: var(--light-gray);
            border-radius: 10px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-deep);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .feature-item span {
            font-size: 15px;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Team Section */
        .team {
            background:#1E5182 url("../images/bg_team.png") no-repeat bottom;
			background-size: 100%;
            padding: 50px 0;
        }
		.team img{
			width: 50%;
			margin:50px 25%;
		}

        .team-stats {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-stat {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .team-stat .number {
            font-size: 48px;
            font-weight: 700;
            color: var(--tech-blue);
            margin-bottom: 10px;
        }

        .team-stat .label {
            font-size: 14px;
            color: #64748B;
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            padding: 60px 0 30px;
            color: var(--white);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

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

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

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

        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--tech-blue);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

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

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

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

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

            .partner-card.prev,
            .partner-card.next {
                transform: scale(0.65);
                margin: 0 -20px;
            }

            .partner-card.active {
                transform: scale(1.05);
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }

            .nav {
                display: none;
            }

            .hero-title {
                font-size: 36px;
                letter-spacing: 4px;
            }

            .solutions-grid,
            .sms-stats,
            .team-stats {
                grid-template-columns: 1fr;
            }

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

            .models-grid {
                gap: 15px;
            }

            .model-item {
                padding: 12px 20px;
                font-size: 14px;
            }

            .partners-carousel {
                padding: 0 50px;
            }

            .partner-card.prev,
            .partner-card.next {
                display: none;
            }

            .partner-card {
                width: 100%;
                transform: scale(1) !important;
                opacity: 1 !important;
            }

            .carousel-btn {
                display: none;
            }
        }
.toph2{
	position: absolute;
    top: 55%!important;
    width: 50%!important;
    margin-left: 25%!important;
    font-size: clamp(24px, 3vw, 45px)!important;
    font-weight: bold!important;
}
.abs{
	position: absolute;
	top: 68%!important;
    width: 50%!important;
    margin-left: 25%!important;
	color: #555;
}
.sla{
	width: 100%;
	margin-top: 15px;
	height: 58px;
	background: #4498E1 url("../images/icon_sla.png") 30px no-repeat;
	border-radius: 10px 10px 0 0;
	color: #fff;
	line-height: 58px!important;
	padding-left: 7%;
}
.table_sla{
	border: none;
	background: #fff;
	border:none;
}
.font16{
	font-size: 16px!important;
	line-height: 30px;
}
.b{
	font-weight: bold!important;
}
.white{
	color: #fff!important;
}
a{
	text-decoration: none;
}
.margin_t15{
	margin-top: 15px!important;
}
.font12{
	font-size: 12px!important;
}
.margin_t120{
	margin-top: 120px!important;
}
.margin_l20{
	margin-left: 20px!important;
}
.container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Section */
        .hero2 {
            text-align: center;
            margin-bottom: 40px;
			margin-top: 210px;
        }

        .hero2 h1 {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 24px;
        }

        .hero2-banner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            padding: 32px 40px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .hero2-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .hero2-banner h2 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 12px;
            position: relative;
        }

        .hero2-banner p {
            font-size: 15px;
            line-height: 1.8;
            opacity: 0.95;
            position: relative;
        }

        /* Comparison Section */
        .comparison {
            margin-bottom: 48px;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .comparison-header h2 {
            font-size: 24px;
            font-weight: 600;
            color: #1e3a5f;
            display: inline-block;
            padding: 8px 24px;
        }

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

        .pain-points {
            background: #f3f0ff;
            border-radius: 12px;
            padding: 24px;
        }

        .pain-points h3 {
            font-size: 18px;
            font-weight: 600;
            color: #6b21a8;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pain-points h3::before {
            content: '';
            width: 4px;
            height: 20px;
            background: #6b21a8;
            border-radius: 2px;
        }
		.pain-points p{
			font-size: 14px;
			color:#666;
			margin-bottom: 15px;
		}

        .pain-point-item {
            background: #ffffff;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 12px;
            border-left: 3px solid #a78bfa;
        }

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

        .pain-point-item h4 {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 6px;
        }

        .pain-point-item p {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.6;
        }

        .solutions {
            background: #2563eb;
            border-radius: 12px;
            padding: 24px;
        }

        .solutions h3 {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .solutions h3::before {
            content: '';
            width: 4px;
            height: 20px;
            background: #ffffff;
            border-radius: 2px;
        }

        .solution-item {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 12px;
            border-left: 3px solid #60a5fa;
        }

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

        .solution-item h4 {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 6px;
        }

        .solution-item p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }
       /* Architecture Section */
        .architecture {
            margin-bottom: 48px;
        }

        .architecture h2 {
            font-size: 24px;
            font-weight: 600;
            color: #1e3a5f;
            text-align: center;
            margin-bottom: 24px;
        }

        .architecture-diagram {
            border: 2px dashed #cbd5e1;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            background: #fff;
        }

        .architecture-diagram img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .architecture-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            color: #94a3b8;
        }

        .architecture-placeholder svg {
            width: 80px;
            height: 80px;
            margin-bottom: 16px;
            opacity: 0.5;
        }

        .architecture-placeholder p {
            font-size: 14px;
        }

        /* Benefits Section */
        .benefits {
            margin-bottom: 48px;
        }

        .benefits h2 {
            font-size: 24px;
            font-weight: 600;
            color: #1e3a5f;
            text-align: center;
            margin-bottom: 24px;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: #f0f9ff;
            border-radius: 12px;
            padding: 24px;
        }

        .benefit-number {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: #2563eb;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
        }

        .benefit-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: #1e3a5f;
            margin-bottom: 6px;
        }

        .benefit-content p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
        }

        /* Partner Section */
        .partner {
            margin-bottom: 48px;
        }

        .partner h2 {
            font-size: 24px;
            font-weight: 600;
            color: #1e3a5f;
            text-align: center;
            margin-bottom: 24px;
        }

        .partner-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .partner-info {
            flex: 1;
            z-index: 1;
        }

        .partner-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .partner-logo-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
        }

        .partner-logo span {
            font-size: 20px;
            font-weight: 600;
            color: #1e3a5f;
        }

        .partner-info p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.8;
            max-width: 600px;
        }

        .partner-decoration {
            position: absolute;
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
            border-radius: 50%;
            opacity: 0.6;
        }

        /* AWS Section */
        .aws-section {
            background: #1e1b4b;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
        }

        .aws-section h2 {
            font-size: 24px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 24px;
        }

        .aws-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .aws-logo {
            width: 80px;
            height: 80px;
            background: #ffffff;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .aws-logo svg {
            width: 100%;
            height: 100%;
        }

        .aws-text {
            text-align: left;
            max-width: 800px;
        }

        .aws-text h3 {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .aws-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            body {
                padding: 20px 16px;
            }

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

            .hero-banner {
                padding: 24px 20px;
            }

            .hero-banner h2 {
                font-size: 22px;
            }

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

            .pain-points, .solutions {
                padding: 20px;
            }

            .benefit-item {
                flex-direction: column;
                gap: 16px;
            }

            .benefit-number {
                width: 40px;
                height: 40px;
                min-width: 40px;
                font-size: 18px;
            }

            .partner-card {
                flex-direction: column;
                text-align: center;
                padding: 24px;
            }

            .partner-info {
                text-align: center;
            }

            .partner-logo {
                justify-content: center;
            }

            .partner-info p {
                max-width: 100%;
            }

            .partner-decoration {
                display: none;
            }

            .aws-section {
                padding: 32px 20px;
            }

.aws-content {
                flex-direction: column;
                text-align: center;
            }

.aws-text {
                text-align: center;
            }


