 :root {
   --primary-dark: #0B1426;
   --secondary-dark: #0F1D32;
   --accent-gold: #E8A838;
   --accent-gold-light: #F0C050;
   --accent-orange: #D4832A;
   --text-primary: #FFFFFF;
   --text-secondary: #94A3B8;
   --text-muted: #64748B;
   --border-color: rgba(255, 255, 255, 0.1);
   --card-bg: rgba(255, 255, 255, 0.05);
   --gradient-gold: linear-gradient(135deg, #E8A838 0%, #F0C050 50%, #D4832A 100%);
   --gradient-dark: linear-gradient(180deg, #0B1426 0%, #0F1D32 100%);
   --shadow-gold: 0 0 30px rgba(232, 168, 56, 0.3);
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 img {
   max-width: 100%;
 }

 body {
   font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
   background: var(--primary-dark);
   color: var(--text-primary);
   line-height: 1.6;
   overflow-x: hidden;
 }

 ::-webkit-scrollbar {
   width: 8px;
 }

 ::-webkit-scrollbar-track {
   background: var(--primary-dark);
 }

 ::-webkit-scrollbar-thumb {
   background: var(--accent-gold);
   border-radius: 4px;
 }

 .navbar {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   padding: 20px 0;
   transition: all 0.4s ease;
   border-bottom: 1px solid transparent;
 }

 .navbar.scrolled {
   background: rgba(11, 20, 38, 0.95);
   backdrop-filter: blur(20px);
   border-bottom: 1px solid var(--border-color);
   padding: 12px 0;
 }

 .nav-container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 40px;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .logo {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--text-primary);
   text-decoration: none;
 }

 .logo-icon {
   width: 40px;
   height: 40px;
   background: var(--gradient-gold);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
 }

 .nav-links {
   display: flex;
   gap: 40px;
   list-style: none;
 }

 .nav-links a {
   color: var(--text-secondary);
   text-decoration: none;
   font-size: 0.95rem;
   font-weight: 500;
   transition: color 0.3s;
   position: relative;
 }

 .nav-links a::after {
   content: '';
   position: absolute;
   bottom: -6px;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--gradient-gold);
   transition: width 0.3s;
 }

 .nav-links a:hover {
   color: var(--accent-gold-light);
 }

 .nav-links a:hover::after {
   width: 100%;
 }

 .mobile-menu-btn {
   display: none;
   background: none;
   border: none;
   color: var(--text-primary);
   font-size: 1.5rem;
   cursor: pointer;
 }

 .hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
   padding-top: 80px;
 }

 .hero-bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('images/generic-hero.jpg') center/cover no-repeat;
 }

 .hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(11, 20, 38, 0.92) 0%, rgba(15, 29, 50, 0.85) 50%, rgba(11, 20, 38, 0.75) 100%);
 }

 .hero-particles {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
 }

 .particle {
   position: absolute;
   width: 4px;
   height: 4px;
   background: var(--accent-gold);
   border-radius: 50%;
   opacity: 0.3;
   animation: float 8s infinite ease-in-out;
 }

 @keyframes float {

   0%,
   100% {
     transform: translateY(0) translateX(0);
     opacity: 0.3;
   }

   50% {
     transform: translateY(-100px) translateX(50px);
     opacity: 0.8;
   }
 }

 .hero-content {
   position: relative;
   z-index: 2;
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 40px;
   width: 100%;
 }

 .hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(232, 168, 56, 0.15);
   border: 1px solid rgba(232, 168, 56, 0.3);
   padding: 8px 20px;
   border-radius: 50px;
   font-size: 0.85rem;
   color: var(--accent-gold-light);
   margin-bottom: 32px;
   backdrop-filter: blur(10px);
 }

 .hero-badge span {
   width: 8px;
   height: 8px;
   background: var(--accent-gold);
   border-radius: 50%;
   animation: pulse 2s infinite;
 }

 @keyframes pulse {

   0%,
   100% {
     opacity: 1;
   }

   50% {
     opacity: 0.4;
   }
 }

 .hero h1 {
   font-size: clamp(2.5rem, 5vw, 4.5rem);
   font-weight: 900;
   line-height: 1.1;
   margin-bottom: 24px;
   letter-spacing: -0.02em;
 }

 .hero h1 .highlight {
   background: var(--gradient-gold);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .hero-subtitle {
   font-size: clamp(1.1rem, 2vw, 1.4rem);
   color: var(--text-secondary);
   max-width: 600px;
   margin-bottom: 40px;
   font-weight: 300;
 }

 .hero-features {
   display: flex;
   gap: 15px;
   flex-wrap: wrap;
   margin-bottom: 40px;
 }

 .hero-feature {
   display: flex;
   align-items: center;
   gap: 8px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid var(--border-color);
   padding: 10px 20px;
   border-radius: 8px;
   font-size: 0.9rem;
   color: var(--text-secondary);
   backdrop-filter: blur(10px);
 }

 .hero-feature svg {
   width: 18px;
   height: 18px;
   color: var(--accent-gold);
 }

 .hero-cta {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }

 .btn-primary {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: var(--gradient-gold);
   color: var(--primary-dark);
   padding: 16px 36px;
   border-radius: 12px;
   font-size: 1rem;
   font-weight: 700;
   text-decoration: none;
   border: none;
   cursor: pointer;
   transition: all 0.3s;
   box-shadow: 0 4px 20px rgba(232, 168, 56, 0.3);
 }

 .btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-gold);
 }

 .btn-secondary {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: transparent;
   color: var(--text-primary);
   padding: 16px 36px;
   border-radius: 12px;
   font-size: 1rem;
   font-weight: 600;
   text-decoration: none;
   border: 1px solid var(--border-color);
   cursor: pointer;
   transition: all 0.3s;
   backdrop-filter: blur(10px);
 }

 .btn-secondary:hover {
   border-color: var(--accent-gold);
   color: var(--accent-gold-light);
 }

 .hero-stats {
   position: absolute;
   bottom: 60px;
   right: 40px;
   display: flex;
   gap: 40px;
   z-index: 2;
 }

 .stat-item {
   text-align: center;
 }

 .stat-number {
   font-size: 1.6rem;
   font-weight: 900;
   background: var(--gradient-gold);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .stat-label {
   font-size: 0.85rem;
   color: var(--text-muted);
   margin-top: 4px;
 }

 section {
   padding: 100px 0;
   position: relative;
 }

 .section-container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 40px;
 }

 .section-header {
   text-align: center;
   margin-bottom: 64px;
 }

 .section-tag {
   display: inline-block;
   background: rgba(232, 168, 56, 0.1);
   border: 1px solid rgba(232, 168, 56, 0.2);
   color: var(--accent-gold);
   padding: 6px 16px;
   border-radius: 50px;
   font-size: 0.8rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 16px;
 }

 .section-title {
   font-size: clamp(2rem, 3vw, 2.8rem);
   font-weight: 800;
   margin-bottom: 16px;
   letter-spacing: -0.01em;
 }

 .section-title .highlight {
   background: var(--gradient-gold);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .section-desc {
   color: var(--text-secondary);
   font-size: 1.1rem;
   max-width: 600px;
   margin: 0 auto;
 }

 .products {
   background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
 }

 .products-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
 }

 .product-card {
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 16px;
   overflow: hidden;
   transition: all 0.4s;
   cursor: pointer;
   position: relative;
 }

 .product-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--gradient-gold);
   opacity: 0;
   transition: opacity 0.4s;
   z-index: 0;
 }

 .product-card:hover {
   transform: translateY(-8px);
   border-color: rgba(232, 168, 56, 0.3);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
 }

 .product-card:hover::before {
   opacity: 0.03;
 }

 .product-image {
   width: 100%;
   height: 240px;
   object-fit: cover;
   transition: transform 0.4s;
 }

 .product-card:hover .product-image {
   transform: scale(1.05);
 }

 .product-content {
   padding: 15px;
   position: relative;
   z-index: 1;
 }

 .product-title {
   font-size: 1.1rem;
   font-weight: 700;
   margin-bottom: 8px;
 }

 .product-desc {
   color: var(--text-muted);
   font-size: 0.9rem;
   margin-bottom: 16px;
 }

 .product-tags {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
 }

 .product-tag {
   background: rgba(232, 168, 56, 0.1);
   color: var(--accent-gold);
   padding: 4px 12px;
   border-radius: 4px;
   font-size: 0.75rem;
   font-weight: 600;
 }

 .advantages {
   background: var(--primary-dark);
 }

 .advantages-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 24px;
 }

 .advantage-card {
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 16px;
   padding: 40px 32px;
   text-align: center;
   transition: all 0.4s;
   position: relative;
   overflow: hidden;
 }

 .advantage-card::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 3px;
   background: var(--gradient-gold);
   transform: scaleX(0);
   transition: transform 0.4s;
 }

 .advantage-card:hover {
   transform: translateY(-4px);
   border-color: rgba(232, 168, 56, 0.2);
 }

 .advantage-card:hover::after {
   transform: scaleX(1);
 }

 .advantage-icon {
   background: rgba(232, 168, 56, 0.1);
   border: 1px solid rgba(232, 168, 56, 0.2);
   border-radius: 16px;
   display: flex;
   padding: 10px 0;
   align-items: center;
   justify-content: center;
   margin: 0 auto 24px;
   font-size: 1.05rem;
   font-weight: bold;
   color: var(--accent-gold);
 }

 .advantage-title {
   font-size: 1.1rem;
   font-weight: 700;
   margin-bottom: 12px;
 }

 .advantage-desc {
   color: var(--text-muted);
   font-size: 0.9rem;
   line-height: 1.7;
 }

 .about {
   background: var(--secondary-dark);
   overflow: hidden;
 }

 .about-content {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
 }

 .about-images {
   padding-right: 20px;
 }

 .about-text {
   padding-left: 20px;
 }

 .about-images,
 .about-text {
   position: relative;
   width: 50%;
 }

 .about-image-main {
   width: 100%;
   border-radius: 16px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
 }

 .about-image-sub {
   position: absolute;
   bottom: -30px;
   right: -20px;
   width: 60%;
   border-radius: 12px;
   border: 4px solid var(--secondary-dark);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
 }

 .about-text h3 {
   font-size: 2rem;
   font-weight: 800;
   margin-bottom: 20px;
   line-height: 1.3;
 }

 .about-text p {
   color: var(--text-secondary);
   margin-bottom: 16px;
   font-size: 0.95rem;
   line-height: 1.8;
 }

 .about-stats {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-top: 32px;
   padding-top: 32px;
   border-top: 1px solid var(--border-color);
 }

 .about-stat h4 {
   font-size: 1.8rem;
   font-weight: 800;
   background: var(--gradient-gold);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }

 .about-stat p {
   font-size: 0.8rem;
   color: var(--text-muted);
   margin-top: 4px;
 }

 .services {
   background: var(--primary-dark);
 }

 .services-timeline {
   display: flex;
   justify-content: space-between;
   position: relative;
   max-width: 900px;
   margin: 0 auto;
 }

 .services-timeline::before {
   content: '';
   position: absolute;
   top: 40px;
   left: 0;
   width: 100%;
   height: 2px;
   background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
 }

 .service-step {
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative;
   z-index: 1;
 }

 .service-icon {
   width: 80px;
   height: 80px;
   background: var(--gradient-gold);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem;
   margin-bottom: 16px;
   box-shadow: 0 0 20px rgba(232, 168, 56, 0.3);
   color: var(--primary-dark);
 }

 .service-title {
   font-size: 1rem;
   font-weight: 700;
   margin-bottom: 4px;
 }

 .service-desc {
   font-size: 0.8rem;
   color: var(--text-muted);
   text-align: center;
   max-width: 140px;
 }

 .contact {
   background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
 }

 .contact-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
 }

 .contact-info h3 {
   font-size: 2rem;
   font-weight: 800;
   margin-bottom: 16px;
 }

 .contact-info>p {
   color: var(--text-secondary);
   margin-bottom: 32px;
 }

 .contact-items {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .contact-item {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   padding: 20px;
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 12px;
   transition: all 0.3s;
 }

 .contact-item:hover {
   border-color: rgba(232, 168, 56, 0.3);
   transform: translateX(4px);
 }

 .contact-icon {
   width: 48px;
   height: 48px;
   min-width: 48px;
   background: rgba(232, 168, 56, 0.1);
   border: 1px solid rgba(232, 168, 56, 0.2);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--accent-gold);
   font-size: 1.2rem;
 }

 .contact-item-content h4 {
   font-size: 1rem;
   margin-bottom: 4px;
 }

 .contact-item-content p {
   color: var(--text-muted);
   font-size: 0.9rem;
 }

 .contact-item-content a {
   color: var(--accent-gold-light);
   text-decoration: none;
   transition: color 0.3s;
 }

 .contact-item-content a:hover {
   color: var(--accent-gold);
 }

 .contact-map {
   background: var(--card-bg);
   border: 1px solid var(--border-color);
   border-radius: 16px;
   overflow: hidden;
   height: 100%;
   min-height: 200px;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
 }

 .map-placeholder {
   text-align: center;
   padding: 40px;
 }

 .map-icon {
   font-size: 4rem;
   margin-bottom: 16px;
 }

 .friendly-links {
   background: var(--primary-dark);
   border-top: 1px solid var(--border-color);
   padding: 60px 0;
 }

 .friendly-links-grid {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }

 .friendly-links-area {
   display: flex;
   flex-direction: row;
   align-items: center;
   flex-wrap: wrap;
   gap: 12px 24px;
   padding: 14px 0;
   border-bottom: 1px solid var(--border-color);
 }

 .friendly-links-area:last-child {
   border-bottom: none;
 }

 .friendly-links-area h4 {
   font-size: 0.9rem;
   font-weight: 700;
   color: var(--text-primary);
   white-space: nowrap;
   min-width: 100px;
   flex-shrink: 0;
   margin: 0;
 }

 .friendly-links-list {
   list-style: none;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 8px 20px;
   align-items: center;
 }

 .friendly-links-list .rand-shop-100__list {
   gap: 15px;
 }

 .friendly-links-list .rand-shop-100 {
   background: var(--primary-dark);
 }

 .friendly-links-list .rand-shop-100__item a {
   width: 100%;

 }

 .friendly-links-list li {
   display: inline-flex;
 }

 .friendly-links-list a {
   color: var(--text-muted);
   text-decoration: none;
   font-size: 0.9rem;
   transition: all 0.3s;
   white-space: nowrap;
 }

 .friendly-links-list a:hover {
   color: var(--accent-gold-light);
 }

 .footer {
   background: #070f1f;
   border-top: 1px solid var(--border-color);
   padding: 60px 0 30px;
 }

 .footer-content {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
   margin-bottom: 40px;
 }

 .footer-brand p {
   color: var(--text-muted);
   margin-top: 16px;
   font-size: 0.9rem;
   line-height: 1.7;
 }

 .footer-title {
   font-size: 1rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: var(--text-primary);
 }

 .footer-links {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .footer-links a {
   color: var(--text-muted);
   text-decoration: none;
   font-size: 0.9rem;
   transition: color 0.3s;
 }

 .footer-links a:hover {
   color: var(--accent-gold-light);
 }

 .footer-bottom {
   border-top: 1px solid var(--border-color);
   padding-top: 24px;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .footer-bottom p {
   color: var(--text-muted);
   font-size: 0.85rem;
 }

 .mobile-dial-btn {
   display: none;
   position: fixed;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 9999;
   background: var(--gradient-gold);
   color: var(--primary-dark);
   padding: 14px 28px;
   border-radius: 50px;
   font-size: 0.95rem;
   font-weight: 700;
   text-decoration: none;
   box-shadow: 0 4px 20px rgba(232, 168, 56, 0.4);
   align-items: center;
   gap: 8px;
   border: none;
   cursor: pointer;
   white-space: nowrap;
   font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
 }

 .mobile-dial-btn svg {
   width: 20px;
   height: 20px;
   flex-shrink: 0;
 }

 .fade-in {
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.6s ease-out;
 }

 .fade-in.visible {
   opacity: 1;
   transform: translateY(0);
 }

 @media (max-width: 1024px) {
   .hero-stats {
     display: none;
   }

   .about-content,
   .contact-content {
     grid-template-columns: 1fr;
   }

   .about-image-sub {
     display: none;
   }

   .footer-content {
     grid-template-columns: 1fr 1fr;
   }
 }

 @media (max-width: 768px) {
   .nav-links {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     width: 100%;
     background: rgba(11, 20, 38, 0.98);
     flex-direction: column;
     padding: 20px 40px;
     gap: 20px;
     border-top: 1px solid var(--border-color);
   }

   .nav-links.active {
     display: flex;
   }

   .mobile-menu-btn {
     display: block;
   }

   .hero-content {
     padding: 0 20px;
   }

   .section-container {
     padding: 0 20px;
   }

   .products-grid {
     grid-template-columns: 1fr;
   }

   .services-timeline {
     flex-direction: column;
     gap: 40px;
   }

   .services-timeline::before {
     display: none;
   }

   .service-step {
     text-align: center;
   }

   .footer-content {
     grid-template-columns: 1fr;
   }

   .footer-bottom {
     flex-direction: column;
     gap: 12px;
     text-align: center;
   }

   section {
     padding: 60px 0;
   }

   .friendly-links-area {
     gap: 10px 16px;
     padding: 12px 0;
   }

   .friendly-links-area h4 {
     min-width: 80px;
   }

   .friendly-links-list {
     gap: 6px 14px;
   }

   .friendly-links {
     padding: 40px 0 80px;
   }

   .footer {
     padding-bottom: 80px;
   }

   .mobile-dial-btn {
     display: inline-flex;
   }
 }

 @media (max-width: 480px) {}

 .hero-body {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 40px;
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   position: relative;
   z-index: 2;
 }

 .hero-content {
   flex: 1 1 520px;
 }

 .hero-visual {
   flex: 1 1 380px;
   min-height: 360px;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .visual-ring {
   width: 280px;
   height: 280px;
   border: 2px dashed rgba(232, 168, 56, 0.3);
   border-radius: 50%;
   position: absolute;
   animation: rotateRing 20s linear infinite;
 }

 .visual-ring::before {
   content: '';
   width: 200px;
   height: 200px;
   border: 2px dashed rgba(232, 168, 56, 0.2);
   border-radius: 50%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
 }

 .visual-ring::after {
   content: '';
   width: 120px;
   height: 120px;
   border: 2px solid rgba(232, 168, 56, 0.15);
   border-radius: 50%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
 }

 @keyframes rotateRing {
   from {
     transform: rotate(0deg);
   }

   to {
     transform: rotate(360deg);
   }
 }

 .visual-card {
   background: rgba(255, 255, 255, 0.08);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(232, 168, 56, 0.25);
   border-radius: 12px;
   padding: 14px 18px;
   display: flex;
   align-items: center;
   gap: 12px;
   position: absolute;
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
   animation: floatCard 6s ease-in-out infinite;
 }

 .vc-icon {
   font-size: 1.6rem;
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(232, 168, 56, 0.15);
   border-radius: 10px;
 }

 .vc-text {
   display: flex;
   flex-direction: column;
   gap: 2px;
 }

 .vc-text strong {
   color: #fff;
   font-size: 0.95rem;
   font-weight: 600;
 }

 .vc-text span {
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.8rem;
 }

 .vc1 {
   top: 20px;
   right: 20px;
   animation-delay: 0s;
 }

 .vc2 {
   bottom: 80px;
   left: 10px;
   animation-delay: 2s;
 }

 .vc3 {
   bottom: 20px;
   right: 40px;
   animation-delay: 4s;
 }

 @keyframes floatCard {

   0%,
   100% {
     transform: translateY(0px);
   }

   50% {
     transform: translateY(-12px);
   }
 }

 @media (max-width: 900px) {
   .hero-visual {
     display: none;
   }
 }

 .contact-content {
   align-items: flex-start;
 }

 .contact-map {
   display: flex;
   flex-direction: column;
   gap: 22px;
   position: relative;
 }

 .contact-map .map-placeholder {
   width: 100%;
   min-height: 260px;
   padding: 42px 28px;
   position: absolute;
   top: 10px;
   left: 0;
 }

 .contact-news-panel {
   width: 100%;
   padding: 24px 26px;
   border: 1px solid rgba(148, 163, 184, 0.18);
   border-radius: 14px;
   background: rgba(15, 23, 42, 0.52);
   box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
   position: absolute;
   top: 292px;
   left: 0;
 }

 .contact-news-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   margin-bottom: 14px;
 }

 .contact-news-head h4 {
   margin: 0;
   color: #fff;
   font-size: 1.15rem;
   font-weight: 700;
 }

 .contact-news-head a {
   color: var(--accent-gold);
   font-size: 0.86rem;
   white-space: nowrap;
 }

 .contact-news-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .contact-news-item {
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 14px;
   align-items: center;
   padding: 12px 0;
   border-top: 1px solid rgba(148, 163, 184, 0.14);
 }

 .contact-news-item:first-child {
   border-top: 0;
 }

 .contact-news-item a {
   color: rgba(255, 255, 255, 0.88);
   font-size: 0.95rem;
   line-height: 1.45;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
 }

 .contact-news-item a:hover {
   color: var(--accent-gold);
 }

 .contact-news-item time {
   color: rgba(255, 255, 255, 0.42);
   font-size: 0.78rem;
 }

 .contact-news-empty {
   color: rgba(255, 255, 255, 0.48);
   padding-top: 10px;
   border-top: 1px solid rgba(148, 163, 184, 0.14);
 }

 @media (max-width: 768px) {
   .contact-news-item {
     grid-template-columns: 1fr;
     gap: 4px;
   }

   .contact-news-item a {
     white-space: normal;
   }
 }

 /* ===== 关于我们区域优化样式 ===== */
 .about-text-desc {
   position: relative;
   overflow: hidden;
   transition: max-height 0.5s ease;
   max-height: 4.8em;
   /* 默认显示约3行 */
   line-height: 1.6;
   color: rgba(255, 255, 255, 0.7);
 }

 .about-text-desc.expanded {
   max-height: 2000px;
   /* 展开后的足够高度 */
 }

 .about-text-desc::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 40px;
   background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
   pointer-events: none;
   transition: opacity 0.3s;
 }

 .about-text-desc.expanded::after {
   opacity: 0;
 }

 .about-text-desc p {
   margin: 0;
 }

 .about-text-desc h4,
 .about-text-desc h5,
 .about-text-desc h6 {
   color: var(--accent-gold, #e8a838);
   font-size: 1rem;
   font-weight: 600;
   margin: 16px 0 8px 0;
 }

 .about-text-desc ol,
 .about-text-desc ul {
   padding-left: 20px;
   margin: 8px 0;
 }

 .about-text-desc li {
   margin-bottom: 6px;
   line-height: 1.6;
 }

 .about-toggle-btn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   margin-top: 10px;
   padding: 6px 18px;
   background: transparent;
   border: 1px solid rgba(232, 168, 56, 0.4);
   border-radius: 6px;
   color: var(--accent-gold, #e8a838);
   font-size: 0.85rem;
   cursor: pointer;
   transition: all 0.3s;
 }

 .about-toggle-btn:hover {
   background: rgba(232, 168, 56, 0.1);
   border-color: rgba(232, 168, 56, 0.6);
 }

 .about-toggle-btn svg {
   width: 14px;
   height: 14px;
   transition: transform 0.3s;
 }

 .about-toggle-btn.expanded svg {
   transform: rotate(180deg);
 }

 .about-keyword-tags {
   margin-top: 16px;
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
 }

 .about-keyword-tags .kw-tag {
   background: rgba(232, 168, 56, 0.15);
   color: var(--accent-gold, #e8a838);
   padding: 5px 14px;
   border-radius: 20px;
   font-size: 0.82rem;
   border: 1px solid rgba(232, 168, 56, 0.2);
   transition: all 0.3s;
 }

 .about-keyword-tags .kw-tag:hover {
   background: rgba(232, 168, 56, 0.25);
 }

 .about-stats {
   display: flex;
   gap: 30px;
   margin-top: 24px;
   padding-top: 20px;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 .about-stat {
   text-align: center;
 }

 .about-stat h4 {
   color: var(--accent-gold, #e8a838);
   font-size: 1.8rem;
   font-weight: 700;
   margin: 0 0 4px 0;
 }

 .about-stat p {
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.82rem;
   margin: 0;
 }

 @media (max-width: 768px) {
   .about-stats {
     gap: 16px;
     justify-content: center;
   }
.about-images, .about-text{
  width: 100%;
}
   .logo{
    font-size: 1.05rem;
   }

   .nav-container{
    padding: 0 15px;
   }

   .hero h1 {
     font-size: 1.5;
   }

   .rand-shop-100__inner {
     padding: 0;
   }

   .about-stat h4 {
     font-size: 1.4rem;
   }

   .rand-shop-100__item a {
     font-size: 12px;
   }
 }

 .knowledge-page {
   padding: 120px 0 70px;
   background: var(--dark-bg);
   min-height: 640px;
 }

 .knowledge-list {
   display: grid;
   gap: 14px;
 }

 .knowledge-item {
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 18px;
   align-items: center;
   padding: 18px 22px;
   border: 1px solid rgba(148, 163, 184, 0.18);
   border-radius: 12px;
   background: rgba(15, 23, 42, 0.62);
 }

 .knowledge-item a {
   color: rgba(255, 255, 255, 0.9);
   font-size: 1rem;
   line-height: 1.5;
 }

 .knowledge-item a:hover {
   color: var(--accent-gold);
 }

 .knowledge-item time {
   color: rgba(255, 255, 255, 0.45);
   font-size: 0.86rem;
   white-space: nowrap;
 }

 .knowledge-empty {
   padding: 42px;
   text-align: center;
   color: rgba(255, 255, 255, 0.52);
   border: 1px solid rgba(148, 163, 184, 0.18);
   border-radius: 12px;
   background: rgba(15, 23, 42, 0.48);
 }

 .knowledge-page .pagination {
   margin-top: 24px;
 }

 @media (max-width: 768px) {
   .knowledge-item {
     grid-template-columns: 1fr;
     gap: 6px;
   }
 }