/* ================================================== */
/* JULIAN AI - ABOUT PAGE OPTIMIZED STYLES */
/* ================================================== */

/* Inherits base styles from style.css */

/* Active navigation state */
.main-nav a.active {
  color: var(--primary-blue) !important;
  background: rgba(59, 130, 246, 0.1) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

/* About Hero Section */
.about-hero {
  background: url('images/tlo-chat-ai-julian.jpg'), 
              linear-gradient(135deg, rgba(230, 243, 255, 0.6) 0%, rgba(204, 231, 255, 0.6) 50%, rgba(179, 219, 255, 0.6) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  padding: 60px 0 20px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}

.about-hero-left {
  z-index: 2;
  position: relative;
}

.about-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-container {
  position: relative;
  max-width: 450px;
}

.about-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.2));
  animation: aboutImageSlideUp 1.2s ease-out 0.3s both, aboutImageFloat 4s ease-in-out infinite 1.5s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 6px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  animation: aboutSlideInLeft 1s ease-out;
}

.hero-badge .badge-icon {
  width: 18px;
  height: 18px;
  stroke: var(--secondary-blue);
  stroke-width: 2;
}

.hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
  animation: aboutSlideInLeft 1s ease-out 0.2s both;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #59daff, #abecff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 700px;
  animation: aboutSlideInLeft 1s ease-out 0.4s both;
}

/* Story Section */
.story-section {
  padding: 20px 0;
  background: var(--bg-white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.0rem;
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.6;
}

.story-text p {
  font-size: 1.0rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: left;
}

.story-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--secondary-blue);
}

.feature-icon-small {
  width: 20px;
  height: 20px;
  stroke: var(--secondary-blue);
  stroke-width: 2;
  flex-shrink: 0;
}

.story-feature span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Timeline */
.timeline-container {
  position: relative;
  padding-left: 30px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--light-blue), var(--secondary-blue));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

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

.timeline-icon {
  position: absolute;
  left: -47px;
  top: 8px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: 3px solid var(--light-blue);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon.active {
  background: var(--secondary-blue);
  border-color: var(--secondary-blue);
  box-shadow: 0 2px 15px rgba(59, 130, 246, 0.5);
}

.timeline-icon-img {
  width: 16px;
  height: 16px;
  stroke: var(--secondary-blue);
  stroke-width: 2;
}

.timeline-icon.active .timeline-icon-img {
  stroke: white;
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Features Showcase */
.features-showcase {
  padding: 20px 0;
  background: var(--bg-white);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: var(--secondary-blue);
}

.feature-card.spotlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(6, 182, 212, 0.05) 100%);
  border: 2px solid var(--secondary-blue);
  transform: scale(1.02);
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.feature-icon-wrapper.primary { background: #e7effc; }
.feature-icon-wrapper.accent { background: #e7effc; }
.feature-icon-wrapper.success { background: #e7effc; }
.feature-icon-wrapper.info { background: #e7effc; }

.feature-icon-large {
  width: 28px;
  height: 28px;
  stroke: #5d98f7;
  stroke-width: 2;
  z-index: 1;
  position: relative;
}

.card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* How It Works */
.how-it-works {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  padding: 20px 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 64px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.step-number {
  position: absolute;
  top: 66px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--secondary-blue), var(--accent-cyan));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  position: relative;
}

/* Pulsujące ramki dla step-icon-wrapper */
.step-icon-wrapper::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--secondary-blue);
  border-radius: 24px;
  animation: pulseRing 2s infinite ease-out;
  z-index: -1;
  opacity: 0;
  transform: scale(1);
}

.step-icon-wrapper::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--secondary-blue);
  border-radius: 24px;
  animation: pulseRing 2s infinite ease-out 1s;
  z-index: -2;
  opacity: 0;
  transform: scale(1);
}

.step-item:hover .step-icon-wrapper {
  background: rgba(59, 130, 246, 0.15);
  transform: scale(1.05);
}

.step-icon {
  width: 36px;
  height: 36px;
  stroke: var(--secondary-blue);
  stroke-width: 1.5;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Chat Demo */
.demo-preview {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}

.chat-demo {
  max-width: 400px;
  width: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  overflow: hidden;
  border: 1px solid var(--border-light);
  animation: chatFloat 4s ease-in-out infinite;
}

.chat-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.avatar-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}

.chat-info {
  display: flex;
  flex-direction: column;
}

.chat-name {
  font-weight: 600;
  font-size: 1rem;
}

.chat-status {
  font-size: 0.8rem;
  opacity: 0.9;
}

.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
}

.message {
  display: flex;
  max-width: 80%;
}

.message.bot-message {
  justify-content: flex-start;
}

.message.user-message {
  justify-content: flex-end;
  margin-left: auto;
}

.message-content {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.bot-message .message-content {
  background: rgba(59, 130, 246, 0.1);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
}

.user-message .message-content {
  background: linear-gradient(135deg, var(--secondary-blue), var(--accent-cyan));
  color: white;
  border-bottom-right-radius: 4px;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: #6b7280;
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }



/* CTA Section */
.cta-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-cyan) 100%);
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-icon {
  margin-bottom: 24px;
}

.cta-icon-main {
  width: 64px;
  height: 64px;
  stroke: white;
  stroke-width: 1.5;
  animation: bounce 2s infinite;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary.large, .btn-secondary.large {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary.large {
  background: white;
  color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary.large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-secondary.large {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary.large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.note-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
}

.cta-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatSlow 20s ease-in-out infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.circle-3 {
  width: 160px;
  height: 160px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

/* Animations */

/* Hero section animations */
@keyframes aboutSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutImageSlideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutImageFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Apply animations to about-hero elements */
.about-hero .hero-badge {
  animation: aboutSlideInLeft 1s ease-out !important;
}

.about-hero .about-hero-title {
  animation: aboutSlideInLeft 1s ease-out 0.2s both !important;
}

.about-hero .about-hero-subtitle {
  animation: aboutSlideInLeft 1s ease-out 0.4s both !important;
}

.about-hero .about-image {
  animation: aboutImageSlideUp 1.2s ease-out 0.3s both, aboutImageFloat 3s ease-in-out infinite 1.5s !important;
}

}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -10px, 0);
  }
  70% {
    transform: translate3d(0, -5px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes typingDot {
  0%, 60%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  30% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* Scroll Animations */
.section-header,
.story-content,
.timeline-item,


/* Responsive Design */
@media (max-width: 980px) {
  .about-hero {
    padding: 40px 0 60px;
    min-height: auto;
  }
  
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-image-container {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline-container::before {
    display: none;
  }
  
  .timeline-item {
    padding-left: 0;
    text-align: center;
    margin-bottom: 32px;
  }
  
  .timeline-icon {
    position: static;
    display: inline-flex;
    margin-bottom: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card.spotlight {
    transform: none;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .step-number {
    top: 56px;
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary.large,
  .btn-secondary.large {
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 30px 0 40px;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-image-container {
    max-width: 280px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-showcase,
  .how-it-works,
  .story-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .chat-demo {
    margin: 0 -22px;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.8rem;
  }
  
  .about-image-container {
    max-width: 250px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .step-number {
    top: 50px;
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .btn-primary.large,
  .btn-secondary.large {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Banner CTA Buttons for About Page - copied from pricing.css */
.about-hero .banner-ctas {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.about-hero .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--secondary-blue), var(--accent-cyan));
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.about-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.about-hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 2px solid var(--border-light);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: white;
  color: var(--text-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-hero .btn-secondary:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: var(--secondary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsive styles - copied from pricing.css */
@media (max-width: 768px) {
  .about-hero {
    padding: 20px 0 20px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.125rem;
  }

  .about-image {
    width: 300px;
  }

  .about-hero .banner-ctas {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .about-hero .btn-primary,
  .about-hero .btn-secondary {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-width: 120px;
  }
}

/* Story section mobile responsive styles */
@media (max-width: 980px) {
  .story-text p {
    text-align: center;
  }
  
  .story-features {
    max-width: 500px;
    margin: 32px auto 0;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 40px 0;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .story-text p {
    font-size: 1rem;
    text-align: center;
  }
  
  .story-features {
    max-width: 100%;
    margin: 24px auto 0;
    gap: 12px;
  }
  
  .story-feature {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .story-feature span {
    font-size: 0.9rem;
  }
  
  .feature-icon-small {
    width: 24px;
    height: 24px;
  }
}

/* NOWY SYSTEM ANIMACJI - PROSTY I JEDNOLITY */
.animate-section {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .about-hero .banner-ctas {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }
}
