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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.hero {
  background: linear-gradient(135deg, #0066cc 0%, #ff4444 50%, #0066cc 100%);
  color: white;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 80px 20px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: drift 20s linear infinite;
  z-index: 1;
}

@keyframes drift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-10px) translateY(-10px);
  }
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  width: 100%;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin: 0;
  opacity: 0.95;
  max-width: 850px;
  width: 100%;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-content > p:not(.hero-subtitle) {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0;
  opacity: 0.9;
  max-width: 750px;
  width: 100%;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 10;
  white-space: nowrap;
}
.cta-button i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-button:hover i {
  transform: scale(1.1);
}
.cta-button:active {
  transform: translateY(-1px);
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.floating-icon:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.floating-icon:nth-child(2) {
  top: 65%;
  left: 88%;
  animation-delay: 1.2s;
}
.floating-icon:nth-child(3) {
  top: 82%;
  left: 15%;
  animation-delay: 2.4s;
}
.floating-icon:nth-child(4) {
  top: 25%;
  left: 85%;
  animation-delay: 3.6s;
}
.floating-icon:nth-child(5) {
  top: 75%;
  left: 55%;
  animation-delay: 4.8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
}
.section {
  padding: 80px 20px;
  position: relative;
  width: 100vw;
  margin: 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: white;
}
.section + .section {
  border-top: 1px solid #f0f0f0;
}

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

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 50px;
  background: linear-gradient(45deg, #0066cc, #ff4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

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

.product-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
  transition: left 0.5s ease;
}
.product-card:hover::before {
  left: 100%;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card-link:hover {
  text-decoration: none;
  color: inherit;
}
.product-card-link .product-card {
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-card-link .product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.product-card-link:hover .product-card .product-icon {
  transform: scale(1.1);
  color: #ff4444;
}
.product-card-link:hover .product-card .product-title {
  color: #0066cc;
}

.product-icon {
  font-size: 3rem;
  color: #0066cc;
  margin-bottom: 20px;
  display: block;
  transition: all 0.3s ease;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.product-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.sku-badge {
  display: inline-block;
  background: linear-gradient(45deg, #0066cc, #004499);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.gs-badge {
  background: linear-gradient(45deg, #ff4444, #cc3333);
}

.flashy-products-btn {
  display: inline-block;
  position: relative;
  padding: 20px 40px;
  background: linear-gradient(45deg, #0066cc, #ff4444, #0066cc);
  background-size: 200% 200%;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid transparent;
  animation: gradientShift 3s ease-in-out infinite;
}
.flashy-products-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: white;
}
.flashy-products-btn .btn-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.flashy-products-btn .btn-text i {
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}
.flashy-products-btn .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}
.flashy-products-btn:hover .btn-shine {
  left: 100%;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.features-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-item .feature-icon {
  font-size: 3.5rem;
  background: linear-gradient(45deg, #0066cc, #ff4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: inline-block;
}
.feature-item .feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.feature-item .feature-description {
  color: #666;
  line-height: 1.6;
}

.ai-section {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
}
.ai-section .ai-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.ai-section .ai-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}
.ai-section .ai-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.ai-section .ai-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.ai-section .ai-features .ai-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.ai-section .ai-features .ai-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.ai-section .ai-features .ai-feature .ai-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}
.ai-section .ai-features .ai-feature .ai-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.stats-section {
  background: #1a1a1a;
  color: white;
  padding: 60px 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.stats-section .stats-grid .stat-item {
  padding: 20px;
}
.stats-section .stats-grid .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #0066cc, #ff4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 10px;
}
.stats-section .stats-grid .stat-item .stat-label {
  font-size: 1.1rem;
  opacity: 0.8;
}

.home-page {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.home-page .content-container {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background-color: transparent !important;
}
.home-page .content-body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.main-content:has(.home-page) {
  padding: 0 !important;
  margin: 0 !important;
  min-height: auto !important;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
    min-height: 85vh;
  }
  .hero-content {
    gap: 20px;
    padding: 0 10px;
  }
  .hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  }
  .hero-content > p:not(.hero-subtitle) {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  }
  .hero-cta-wrapper {
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    gap: 12px;
  }
  .hero-cta-wrapper .cta-button {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .section {
    padding: 60px 15px;
  }
  .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    margin-bottom: 40px;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-card {
    padding: 25px;
  }
  .flashy-products-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
  .flashy-products-btn .btn-text i {
    font-size: 1.1rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ai-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .ai-description {
    font-size: 1.05rem;
  }
  .ai-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stats-grid .stat-item .stat-number {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 40px 10px;
    min-height: 75vh;
  }
  .hero-content {
    gap: 15px;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  }
  .hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
  }
  .hero-content > p:not(.hero-subtitle) {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
  }
  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-height: 48px;
  }
  .cta-button i {
    font-size: 1rem;
  }
  .section {
    padding: 40px 10px;
  }
  .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 30px;
  }
  .product-card {
    padding: 20px;
  }
  .product-icon {
    font-size: 2.5rem;
  }
  .product-title {
    font-size: 1.25rem;
  }
  .flashy-products-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  .flashy-products-btn .btn-text {
    gap: 8px;
  }
  .flashy-products-btn .btn-text i {
    font-size: 1rem;
  }
  .feature-item .feature-icon {
    font-size: 3rem;
  }
  .ai-section {
    padding: 40px 10px;
  }
  .ai-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
  }
  .ai-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .ai-features {
    margin-top: 30px;
  }
  .ai-features .ai-feature {
    padding: 20px;
  }
  .ai-features .ai-feature .ai-feature-icon {
    font-size: 2rem;
  }
  .ai-features .ai-feature .ai-feature-title {
    font-size: 1rem;
  }
  .stats-section {
    padding: 40px 10px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .stats-grid .stat-item {
    padding: 15px;
  }
  .stats-grid .stat-item .stat-number {
    font-size: 2.25rem;
  }
  .stats-grid .stat-item .stat-label {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .hero {
    padding: 30px 8px;
    min-height: 70vh;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-height: 44px;
  }
  .section {
    padding: 30px 8px;
  }
  .product-card {
    padding: 18px;
  }
  .flashy-products-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .stats-grid .stat-item .stat-number {
    font-size: 2rem;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 40px 15px;
  }
  .hero-content {
    gap: 15px;
  }
  .section {
    padding: 50px 15px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .cta-button,
  .flashy-products-btn,
  .copy-id-btn,
  footer a {
    min-height: 48px;
    padding: 12px 24px;
  }
  .product-card-link .product-card:hover {
    transform: none;
  }
  .feature-item:hover {
    transform: none;
  }
}
