/* =============================================================
   ABOUT SECTION PREMIUM STYLES
   Sophos Academy - Premium Visual Upgrade
   ============================================================= */

/* Variables are defined in assets/css/variables.css */

/* ===== Section Badge Premium ===== */
.section-badge-premium {
  display: inline-block;
  padding: 8px 20px;
  background: var(--sophos-gradient);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(66, 185, 131, 0.3);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 5px 20px rgba(66, 185, 131, 0.3); }
  50% { box-shadow: 0 5px 30px rgba(66, 185, 131, 0.5); }
}

/* ===== About Banner Premium ===== */
.about-banner-premium {
  position: relative;
  background: var(--sophos-gradient);
  border-radius: 24px;
  overflow: hidden;
  padding: 60px;
  min-height: 400px;
  box-shadow: var(--shadow-medium);
}

.banner-background-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(66, 185, 131, 0.2);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.1);
  bottom: -100px;
  left: -100px;
  animation-delay: -4s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(66, 185, 131, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 185, 131, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.banner-content-wrapper {
  position: relative;
  z-index: 2;
}

.banner-text-content {
  color: var(--text-white);
}

.banner-text-content h3,
.banner-text-content .banner-headline {
  color: var(--text-white);
}

.banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.eyebrow-icon {
  color: var(--primary-color);
}

.banner-headline {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-white);
}

.highlight-text {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(66, 185, 131, 0.3);
  z-index: -1;
  transform: skewX(-3deg);
}

.banner-description {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 550px;
}

.banner-features-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.banner-feature-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.banner-feature-item i {
  font-size: 18px;
  color: var(--primary-color);
}

/* Banner Visual */
.banner-visual {
  position: relative;
  height: 100%;
  min-height: 320px;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
}

.brain-animation {
  width: 100%;
  height: 100%;
  background-image: url('../img/brain-ai.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: brain-float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.brain-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(66, 185, 131, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}

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

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Floating Stats */
.floating-stats {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.stat-bubble {
  position: absolute;
  background: linear-gradient(145deg, #0a0a0a, #111111);
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(66, 185, 131, 0.3);
  border: 1px solid rgba(66, 185, 131, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bubble-float 5s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.stat-bubble.stat-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.stat-bubble.stat-2 {
  bottom: 20%;
  right: 5%;
  animation-delay: -1.5s;
}

.stat-bubble.stat-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: -3s;
}

@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sophos-primary);
  line-height: 1;
}

.stat-text {
  font-size: 11px;
  color: #b0b0b0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Particle Field */
.particle-field {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.particle-field .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(66, 185, 131, 0.8);
  border-radius: 50%;
  animation: particle-float 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(66, 185, 131, 0.5);
}

.particle.p1 { top: 15%; left: 20%; animation-delay: 0s; }
.particle.p2 { top: 25%; right: 25%; animation-delay: -1s; width: 6px; height: 6px; }
.particle.p3 { bottom: 30%; left: 15%; animation-delay: -2s; }
.particle.p4 { top: 60%; right: 15%; animation-delay: -0.5s; width: 10px; height: 10px; }
.particle.p5 { bottom: 15%; right: 30%; animation-delay: -3s; width: 5px; height: 5px; }

@keyframes particle-float {
  0%, 100% { opacity: 0.8; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-15px) scale(1.2); }
}

/* ===== How It Works Section ===== */
.how-it-works-section {
  background: linear-gradient(145deg, #0a0a0a, #111111);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(66, 185, 131, 0.3);
}

.hw-title {
  text-align: center;
  color: var(--sophos-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
}

.hw-step-number {
  width: 50px;
  height: 50px;
  background: var(--sophos-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(66, 185, 131, 0.3);
}

.hw-step-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.hw-step-content p {
  font-size: 0.85rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}

.hw-connector {
  display: flex;
  align-items: center;
  padding-top: 15px;
  color: var(--sophos-primary);
  font-size: 1.2rem;
}

/* ===== Premium Feature Cards ===== */
.premium-feature-card {
  position: relative;
  background: linear-gradient(145deg, #0a0a0a, #111111);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(66, 185, 131, 0.2);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.premium-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--sophos-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.premium-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(66, 185, 131, 0.3);
  border-color: rgba(66, 185, 131, 0.5);
}

.premium-feature-card:hover::before {
  transform: scaleX(1);
}

.card-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(66, 185, 131, 0.2) 0%, transparent 70%);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.premium-feature-card:hover .card-glow {
  transform: scale(1.5);
  opacity: 1;
  background: radial-gradient(circle, rgba(66, 185, 131, 0.4) 0%, transparent 70%);
}

.premium-feature-card .card-icon {
  width: 70px;
  height: 70px;
  background: var(--sophos-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(66, 185, 131, 0.3);
  transition: var(--transition-bounce);
}

.premium-feature-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.premium-feature-card .card-icon i {
  font-size: 30px;
  color: white;
}

.premium-feature-card .card-icon.icon-neuro {
  background: var(--sophos-gradient);
  box-shadow: 0 10px 30px rgba(66, 185, 131, 0.3);
}

.premium-feature-card .card-icon.icon-neuro svg {
  display: block;
}

.premium-feature-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.premium-feature-card > p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #b0b0b0;
  border-bottom: 1px solid rgba(66, 185, 131, 0.1);
}

.feature-checks li:last-child {
  border-bottom: none;
}

.feature-checks li i {
  color: var(--sophos-primary);
  font-size: 1rem;
}

/* ===== Card Color Variants ===== */

/* Purple variant (IA card) */
.premium-feature-card .card-icon.icon-purple {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.card-variant-purple:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(124, 58, 237, 0.25);
}

.card-variant-purple::before {
  background: linear-gradient(135deg, #7c3aed, #5b21b6) !important;
}

.card-variant-purple .feature-checks li i {
  color: #a78bfa;
}

/* Blue variant (Resultados card) */
.premium-feature-card .card-icon.icon-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.card-variant-blue:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(59, 130, 246, 0.25);
}

.card-variant-blue::before {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
}

.card-variant-blue .feature-checks li i {
  color: #60a5fa;
}

/* Featured Card */
.premium-feature-card.featured {
  border: 2px solid var(--sophos-primary);
  background: linear-gradient(135deg, #0a0a0a, #0f1a14);
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(66, 185, 131, 0.15);
}

.premium-feature-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 25px;
  background: var(--sophos-gradient);
  color: white;
  padding: 8px 18px;
  border-radius: 0 0 12px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(66, 185, 131, 0.4);
}

/* ===== Intro Text - Centered Variant ===== */
.ultrathink-intro-text.no-border {
  border-left: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto 40px;
}

.ultrathink-intro-text.no-border::before {
  display: none;
}

/* ===== Feature Item Icon Colors ===== */
.feature-item i.icon-green {
  color: var(--sophos-primary);
}

.feature-item i.icon-blue {
  color: #3b82f6;
}

.feature-item i.icon-purple {
  color: #a78bfa;
}

/* ===== Premium Features List ===== */
.premium-features-list {
  background: linear-gradient(145deg, #0a0a0a, #111111);
  border-radius: 20px;
  padding: 30px 40px;
  margin-top: 50px;
  border: 1px solid rgba(66, 185, 131, 0.2);
  position: relative;
}

.premium-features-list::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--sophos-gradient);
  border-radius: 2px;
}

.features-list-header {
  text-align: center;
  margin-bottom: 25px;
}

.features-list-header h5 {
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.features-list-header h5 i {
  color: var(--sophos-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: linear-gradient(145deg, #111111, #1a1a1a);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border: 1px solid rgba(66, 185, 131, 0.1);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(66, 185, 131, 0.25);
  border-color: rgba(66, 185, 131, 0.4);
}

.feature-item i {
  font-size: 1.3rem;
  color: var(--sophos-primary);
}

.feature-item span {
  font-size: 0.95rem;
  color: #b0b0b0;
  font-weight: 500;
}

/* ===== CTA Buttons Center ===== */
.cta-buttons-center {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 40px;
  flex-wrap: wrap;
  position: relative;
}

.cta-buttons-center::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--sophos-gradient);
  border-radius: 2px;
}

.btn-premium-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: var(--sophos-gradient);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(66, 185, 131, 0.4);
  transition: var(--transition-smooth);
}

.btn-premium-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 185, 131, 0.5);
  color: white;
}

.btn-premium-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: transparent;
  color: var(--sophos-primary);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--sophos-primary);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-premium-secondary:hover {
  background: var(--sophos-primary);
  color: white;
}

/* ===== Premium CTA Section ===== */
.premium-cta-section {
  position: relative;
  background: linear-gradient(145deg, #0a0a0a, #111111);
  border: 1px solid rgba(66, 185, 131, 0.3);
  border-radius: 24px;
  padding: 60px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(66, 185, 131, 0.15);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(66, 185, 131, 0.15);
  filter: blur(40px);
}

.cta-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -50px;
  animation: shape-float 10s ease-in-out infinite;
}

.cta-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
  animation: shape-float 8s ease-in-out infinite reverse;
}

@keyframes shape-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.cta-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(66, 185, 131, 0.7);
  border-radius: 50%;
  animation: particle-twinkle 3s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(66, 185, 131, 0.5);
}

.cta-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cta-particles span:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; }
.cta-particles span:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 1s; }
.cta-particles span:nth-child(4) { top: 50%; right: 25%; animation-delay: 1.5s; }
.cta-particles span:nth-child(5) { bottom: 30%; right: 10%; animation-delay: 2s; }

@keyframes particle-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(66, 185, 131, 0.15);
  border: 1px solid rgba(66, 185, 131, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  color: var(--primary-color);
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-white);
}

.cta-content > p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.7;
  color: #b0b0b0;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #b0b0b0;
}

.cta-features span i {
  color: #5fcf9d;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(66, 185, 131, 0.4);
  transition: var(--transition-smooth);
}

.cta-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 185, 131, 0.5);
  color: #ffffff;
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 35px;
  background: transparent;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(66, 185, 131, 0.5);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cta-btn-outline:hover {
  background: rgba(66, 185, 131, 0.15);
  border-color: var(--primary-color);
  color: var(--primary-light);
}

/* ===== Section Header Premium ===== */
.section-header-premium {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sophos-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-tag i {
  font-size: 14px;
}

/* Clean pill tag variant */
.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(66, 185, 131, 0.1);
  border: 1px solid rgba(66, 185, 131, 0.25);
  border-radius: 50px;
  color: var(--sophos-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-tag-pill i {
  font-size: 12px;
}

/* ===== Timeline Premium Additions ===== */
.timeline-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(66, 185, 131, 0.1), transparent);
  animation: shape-drift 15s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 3%;
  animation-delay: -5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 10%;
  animation-delay: -10s;
}

@keyframes shape-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(5deg); }
  50% { transform: translate(0, -30px) rotate(0deg); }
  75% { transform: translate(-20px, -10px) rotate(-5deg); }
}

/* Milestone Badge */
.milestone-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(66, 185, 131, 0.1);
  color: var(--sophos-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.milestone-badge.badge-highlight {
  background: var(--sophos-gradient);
  color: white;
  animation: badge-pulse 2s infinite;
}

/* Milestone Stats */
.milestone-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(66, 185, 131, 0.2);
}

.stat-item {
  text-align: center;
}

.milestone-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sophos-primary);
  line-height: 1;
}

.milestone-stats .stat-label {
  font-size: 12px;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Milestone Image Overlay */
.milestone-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(66, 185, 131, 0.1), transparent);
  z-index: 1;
}

.milestone-image-overlay.gradient-overlay {
  background: linear-gradient(135deg, rgba(66, 185, 131, 0.3), rgba(45, 94, 187, 0.2));
}

/* Milestone Today */
.milestone-today .milestone-content {
  border: 2px solid var(--sophos-primary);
  box-shadow: 0 15px 40px rgba(66, 185, 131, 0.2);
}

/* Pulse Animation for Today */
.pulse-animation {
  animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(66, 185, 131, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(66, 185, 131, 0); }
  100% { box-shadow: 0 0 0 0 rgba(66, 185, 131, 0); }
}

/* ===== Quote Box Premium ===== */
.quote-box-premium {
  position: relative;
  background: linear-gradient(145deg, #0a0a0a, #111111);
  border-radius: 24px;
  padding: 50px 60px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(66, 185, 131, 0.2);
  overflow: hidden;
}

.quote-icon-wrapper {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: var(--sophos-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(66, 185, 131, 0.3);
}

.quote-icon-wrapper i {
  font-size: 28px;
  color: white;
}

.quote-box-premium blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 30px;
  padding-left: 80px;
  position: relative;
}

.quote-author-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: 3px solid var(--sophos-primary);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px;
}

.author-role {
  font-size: 0.9rem;
  color: var(--sophos-primary);
  margin: 0;
  font-weight: 600;
}

.quote-decoration {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(66, 185, 131, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===== Impact Numbers Section ===== */
.impact-numbers-section {
  background: var(--sophos-gradient);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
}

.impact-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.impact-icon {
  font-size: 2rem;
  color: #5fcf9d;
  margin-bottom: 15px;
}

.impact-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}

.impact-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ===== Team Section Premium Additions ===== */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(66, 185, 131, 0.1);
  color: var(--sophos-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.contributor-tagline {
  font-style: italic;
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--sophos-primary);
}

.contributor-quote {
  background: rgba(66, 185, 131, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  color: #b0b0b0;
}

.social-links {
  position: absolute;
  bottom: 60px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.contributor-card:hover .social-links {
  opacity: 1;
  transform: translateY(0);
}

.social-link {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sophos-primary);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--sophos-primary);
  color: white;
  transform: translateY(-3px);
}

/* Founder Badge */
.founder-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--sophos-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(66, 185, 131, 0.4);
}

.founder-badge i {
  color: #5fcf9d;
}

/* Founder Card Special */
.founder-card {
  border: 2px solid var(--sophos-primary);
  background: linear-gradient(to right, rgba(66, 185, 131, 0.03), transparent);
}

/* Team CTA */
.team-cta {
  background: linear-gradient(145deg, #0a0a0a, #111111);
  border-radius: 20px;
  padding: 40px;
  border: 1px dashed var(--sophos-primary);
}

.team-cta h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-cta p {
  color: #b0b0b0;
  margin-bottom: 20px;
}

.btn-team-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: var(--sophos-gradient);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-team-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(66, 185, 131, 0.4);
  color: white;
}

/* ===== Dark Mode Support ===== */
body.dark-mode .about-banner-premium {
  background: linear-gradient(135deg, #1a3a5c, #1e4a3d);
}

body.dark-mode .how-it-works-section {
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-color: rgba(66, 185, 131, 0.2);
}

body.dark-mode .hw-title,
body.dark-mode .hw-step-content h5 {
  color: #fff;
}

body.dark-mode .hw-step-content p {
  color: #aaa;
}

body.dark-mode .premium-feature-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .premium-feature-card h4 {
  color: #fff;
}

body.dark-mode .premium-feature-card > p,
body.dark-mode .feature-checks li {
  color: #aaa;
}

body.dark-mode .premium-features-list {
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-color: rgba(66, 185, 131, 0.2);
}

body.dark-mode .features-list-header h5 {
  color: #fff;
}

body.dark-mode .feature-item {
  background: #222;
}

body.dark-mode .feature-item span {
  color: #ccc;
}

body.dark-mode .quote-box-premium {
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-color: rgba(66, 185, 131, 0.2);
}

body.dark-mode .quote-box-premium blockquote {
  color: #ddd;
}

body.dark-mode .contributor-tagline,
body.dark-mode .contributor-quote {
  color: #aaa;
}

body.dark-mode .team-cta {
  background: linear-gradient(135deg, #1a1a1a, #222);
}

body.dark-mode .team-cta h4 {
  color: #fff;
}

body.dark-mode .team-cta p {
  color: #aaa;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199px) {
  .banner-headline {
    font-size: 2.2rem;
  }

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

@media (max-width: 991px) {
  .about-banner-premium {
    padding: 40px;
  }

  .banner-headline {
    font-size: 1.8rem;
  }

  .hw-steps {
    flex-direction: column;
    align-items: center;
  }

  .hw-connector {
    transform: rotate(90deg);
    padding: 10px 0;
  }

  .hw-step {
    max-width: 100%;
  }

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

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

@media (max-width: 767px) {
  .about-banner-premium {
    padding: 30px 20px;
  }

  .banner-headline {
    font-size: 1.5rem;
  }

  .banner-features-row {
    flex-direction: column;
    gap: 10px;
  }

  .banner-feature-item {
    justify-content: center;
  }

  .premium-cta-section {
    padding: 40px 20px;
  }

  .cta-content h3 {
    font-size: 1.6rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 15px;
  }

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

  .premium-feature-card.featured {
    transform: scale(1);
  }

  .premium-feature-card.featured:hover {
    transform: translateY(-10px);
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .impact-card {
    padding: 20px 15px;
  }

  .impact-number {
    font-size: 1.8rem;
  }

  .quote-box-premium {
    padding: 30px 20px;
  }

  .quote-box-premium blockquote {
    font-size: 1.1rem;
    padding-left: 0;
    padding-top: 70px;
  }

  .quote-icon-wrapper {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== Guarantee & Support Section ===== */
.guarantee-support-section {
  padding: 80px 0;
  background: #000000;
}

.guarantee-card,
.support-card {
  position: relative;
  background: linear-gradient(145deg, #0a0a0a, #111111);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(66, 185, 131, 0.2);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.guarantee-card::before,
.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--sophos-gradient);
}

.guarantee-card:hover,
.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(66, 185, 131, 0.3);
  border-color: rgba(66, 185, 131, 0.5);
}

.guarantee-icon,
.support-icon {
  width: 80px;
  height: 80px;
  background: var(--sophos-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(66, 185, 131, 0.3);
  transition: var(--transition-bounce);
}

.guarantee-card:hover .guarantee-icon,
.support-card:hover .support-icon {
  transform: scale(1.1) rotate(5deg);
}

.guarantee-icon i,
.support-icon i {
  font-size: 35px;
  color: white;
}

.guarantee-badge,
.support-badge {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(66, 185, 131, 0.1);
  color: var(--sophos-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.guarantee-content h3,
.support-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.guarantee-content > p,
.support-content > p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 25px;
}

.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.guarantee-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #b0b0b0;
  border-bottom: 1px solid rgba(66, 185, 131, 0.1);
}

.guarantee-list li:last-child {
  border-bottom: none;
}

.guarantee-list li i {
  color: var(--sophos-primary);
  font-size: 1.2rem;
}

.support-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.support-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(145deg, #111111, #1a1a1a);
  border-radius: 50px;
  border: 1px solid rgba(66, 185, 131, 0.2);
  transition: var(--transition-smooth);
}

.support-feature:hover {
  background: rgba(66, 185, 131, 0.15);
  border-color: var(--sophos-primary);
}

.support-feature i {
  color: var(--sophos-primary);
  font-size: 1rem;
}

.support-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #b0b0b0;
}

.guarantee-btn,
.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--sophos-gradient);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(66, 185, 131, 0.3);
  transition: var(--transition-smooth);
}

.guarantee-btn:hover,
.support-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 185, 131, 0.4);
  color: white;
}

/* Dark Mode */
body.dark-mode .guarantee-support-section {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

body.dark-mode .guarantee-card,
body.dark-mode .support-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .guarantee-content h3,
body.dark-mode .support-content h3 {
  color: #fff;
}

body.dark-mode .guarantee-content > p,
body.dark-mode .support-content > p,
body.dark-mode .guarantee-list li,
body.dark-mode .support-feature span {
  color: #aaa;
}

body.dark-mode .support-feature {
  background: linear-gradient(135deg, #222, #1a1a1a);
  border-color: rgba(66, 185, 131, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .guarantee-card,
  .support-card {
    padding: 30px;
  }

  .guarantee-content h3,
  .support-content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .guarantee-support-section {
    padding: 60px 0;
  }

  .support-features {
    flex-direction: column;
    gap: 10px;
  }

  .support-feature {
    justify-content: center;
  }
}

/* ===== Dark Theme Overrides for About Section ===== */
/* Ensure all section titles are white */
#about .section-title h2,
#about .section-header h2,
#about h2,
.about-section h2,
.about-premium h2,
#about-details .section-title h2,
.about-details .section-title h2,
.ultrathink-section-title {
  color: var(--text-white);
}

#about .section-title p,
#about .section-header p,
.about-section .section-title p,
.about-premium .section-title p,
#about-details .section-title p,
.about-details .section-title p,
.ultrathink-intro-text {
  color: var(--text-secondary);
}

/* Section Badge on dark background */
#about .section-badge,
.about-section .section-badge,
#about-details .section-badge {
  background: rgba(66, 185, 131, 0.15);
  color: var(--primary-color);
}

/* Ensure all section backgrounds are dark */
#about,
.about-section,
section[id="about"],
#about-details,
.about-details {
  background: var(--bg-dark);
}

/* Section Header Premium for dark theme */
.section-header-premium {
  color: #ffffff;
}

.section-header-premium .section-tag {
  color: var(--sophos-primary);
}

/* Additional stat bubble enhancements */
.stat-bubble .stat-value {
  color: var(--sophos-primary);
  text-shadow: 0 0 10px rgba(66, 185, 131, 0.3);
}

/* Animated glow effect for stat bubbles on hover */
.stat-bubble:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 35px rgba(66, 185, 131, 0.5);
  border-color: rgba(66, 185, 131, 0.7);
  transform: translateY(-5px);
}

/* Smooth transitions for all interactive elements */
.stat-bubble,
.premium-feature-card,
.feature-item,
.guarantee-card,
.support-card,
.how-it-works-section {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
