/* ---------- Scoped styles (prefix about-) ---------- */
.about-section {
  background: #000;
  color: #fff;
  font-family: 'Source Code Pro', monospace;
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}

/* Enhanced grid with depth */
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='36' height='36'><rect width='36' height='36' fill='transparent'/><path d='M0 1 L36 1 M1 0 L1 36' stroke='rgba(255,255,255,0.12)' stroke-width='1'/></svg>");
  background-repeat: repeat;
  background-size: 36px 36px;
  opacity: 1;
}

.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: 
    radial-gradient(circle at center, transparent 30%, rgba(0,204,255,0.06) 70%, rgba(0,204,255,0.12) 100%),
    linear-gradient(to right, rgba(0,204,255,0.08) 0%, transparent 20%, transparent 80%, rgba(0,204,255,0.08) 100%),
    linear-gradient(to bottom, rgba(0,204,255,0.08) 0%, transparent 20%, transparent 80%, rgba(0,204,255,0.08) 100%);
  opacity: 0.7;
  animation: about-grid-breathe 8s ease-in-out infinite;
}

@keyframes about-grid-breathe {
  0%, 100% { 
    opacity: 0.4;
    transform: scale(1);
  }
  50% { 
    opacity: 0.7;
    transform: scale(1.005);
  }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .about-container {
    gap: 36px;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 48px 16px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about-col-left {
    order: 2;
  }
  .about-col-right {
    order: 1;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 32px 12px;
  }
  .about-container {
    gap: 24px;
  }
}

.about-col-left, .about-col-right { box-sizing: border-box; }

.about-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 9vw, 128px);
  margin: 0 0 20px 0;
  letter-spacing: 0.6px;
  line-height: 1.02;
  color: #ffffff;
  display: inline-block;
}

/* Enhanced value proposition */
.about-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: #e5e5e5;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.about-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 760px;
  overflow: visible;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  display: block;
  background: transparent;
  transition: transform 0.3s ease;
  /* Initially hidden until animation triggers */
  opacity: 0;
  visibility: hidden;
}

.about-image:hover {
  transform: scale(1.02);
}

/* Responsive image adjustments */
@media (max-width: 768px) {
  .about-image-wrapper {
    max-height: 400px;
    margin-bottom: 20px;
  }
  .about-image {
    max-height: 400px;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .about-image-wrapper {
    max-height: 300px;
    margin-bottom: 16px;
  }
  .about-image {
    max-height: 300px;
    width: 85%;
  }
}

.about-content { 
  max-width: 60ch; 
}

.about-paragraph {
  font-size: clamp(16px, 2.4vw, 22px);
  line-height: 1.8;
  margin: 0 0 18px 0;
  color: #fff;
}

/* Enhanced key benefits styling */
.about-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.about-benefit-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff, #cccccc);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.about-benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.about-benefit-item:hover::before {
  transform: scaleY(1);
}

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

.about-benefit-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Trust signals section */
.about-trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin: 32px 0 24px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  min-width: 120px;
  transition: transform 0.2s ease;
}

.about-trust-item:hover {
  transform: translateY(-2px);
}

.about-trust-number {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.about-trust-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Button Enhancement */
.about-cta {
  margin: 32px 0 24px 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  /*background: linear-gradient(135deg, #00ccff, #0099cc);*/
  background: gray;
  border: none;
  border-radius: 8px;
  color: #000;
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.about-cta-button:hover::before {
  left: 100%;
}

.about-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 210, 213, 0.3);
}

.about-cta-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.about-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Responsive adjustments for content */
@media (max-width: 768px) {
  .about-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .about-paragraph {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
  }
  
  .about-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-trust-signals {
    flex-direction: column;
    gap: 16px;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-paragraph {
    font-size: clamp(15px, 4.5vw, 18px);
    line-height: 1.6;
    margin-bottom: 14px;
  }
}

/* ---------- Enhanced Selo with better visual hierarchy ---------- */
.about-proof {
  margin-top: 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.about-badge {
  position: relative;
  width: 220px;
  height: 220px;
  display: inline-block;
  border-radius: 50%;
  overflow: visible;
  box-sizing: border-box;
  transform: translateZ(0);
  filter: drop-shadow(0 0 20px rgba(0, 204, 255, 0.2));
}

.about-badge-ring {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  display: flex;
  align-items:center;
  justify-content:center;
}
.about-badge-ring svg circle {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 2.6;
  fill: transparent;
}

.about-text-circ {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 7;
  animation: about-rotate-cw 20s linear infinite;
  transform-origin: 50% 50%;
}
.about-text-circ svg text { 
  fill: #fff; 
  font-weight: 700; 
  font-size: 14px; 
  letter-spacing: 0.6px; 
}

@keyframes about-rotate-cw { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.about-badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.about-badge-center img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
  background: transparent;
  filter: drop-shadow(0 0 0.8px rgba(0,0,0,0.6));
}

.about-badge:hover .about-text-circ { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .about-text-circ { animation: none !important; transform: none !important; }
  .about-section::after { animation: none !important; opacity: 0.5 !important; transform: none !important; }
}

@media (max-width: 900px) {
  .about-badge { width: 180px; height: 180px; }
  .about-text-circ svg text { font-size: 12px; }
}
@media (max-width: 768px) {
  .about-proof {
    margin-top: 28px;
  }
  .about-badge { width: 160px; height: 160px; }
  .about-text-circ svg text { font-size: 11px; }
}
@media (max-width: 520px) {
  .about-badge { width: 140px; height: 140px; }
  .about-text-circ svg text { font-size: 10px; letter-spacing: 0.4px; }
}
@media (max-width: 380px) {
  .about-badge { width: 120px; height: 120px; }
  .about-text-circ svg text { font-size: 9px; letter-spacing: 0.3px; }
}

/* Scroll indicator for mobile */
.about-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
  .about-scroll-indicator {
    display: flex;
  }
}

/* Enhanced CSS for keyboard navigation */
.keyboard-navigation *:focus {
  outline: 2px solid #ffffff !important;
  outline-offset: 2px !important;
}

.keyboard-navigation .about-cta-button:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4) !important;
}