/* SINKHRON - Online Services Page Styles */
/* ======================================== */

/* Bootstrap Override - Replace blue with orange */
.text-primary {
  color: var(--color-primary) !important;
}

.text-primary:hover {
  color: var(--color-grandpa-orange) !important;
}

/* Page Container - Additional top padding for header */
.container.py-5 {
  padding-top: calc(var(--space-3xl) + 60px) !important;
  padding-bottom: var(--space-3xl);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(47deg, rgba(255, 255, 255, 1) 0%, rgb(244 58 9 / 15%) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  margin-bottom: var(--space-3xl);
  color: var(--text-inverse);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.hero-section * {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: #2c3e50;
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-xl);
}

.hero-section .lead {
  color: #2c3e50;
  font-size: 1.25rem;
  text-align: justify;
  line-height: 1.7;
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-medium);
  max-width: 90%;
  text-shadow: 0 0.4px 0.5px #3d3d3d;
}

.hero-section img {
  border-radius: var(--radius-xl);
  transition: transform var(--duration-normal) var(--ease-out);
  background: transparent;
  box-shadow: none;
}

.hero-section img:hover {
  transform: translateY(-4px);
}

/* Hero Features */
.hero-features {
  margin-top: var(--space-2xl);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xl);
  /* padding: var(--space-lg); */
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--backdrop-blur-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(10px);
}

.feature-item i {
  color: var(--color-live-green);
  font-size: 1.25rem;
  margin-right: var(--space-lg);
}

.feature-item span {
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-medium);
  color: #2c3e50;
  text-shadow: 0 0.4px 0.5px #3d3d3d;
}

/* Service Description */
.service-description {
  text-align: center;
  background: var(--bg-card);
  padding: var((--space-md));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-3xl);
}

.service-description h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.service-description h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

.service-description p {
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  line-height: 1.8;
  text-align: justify;
}

/* Supported Platforms Section */
.platforms h2 {
  text-align: center;
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-3xl);
  position: relative;
}

.platforms h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

.platform-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--border-light);
  height: 100%;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.platform-icon i {
  color: var(--color-primary);
  transition: all var(--duration-normal) var(--ease-out);
}

.platform-card:hover .platform-icon i {
  color: var(--color-grandpa-orange);
  transform: scale(1.1);
}

.platform-card h5 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-semibold);
  margin-top: var(--space-lg);
}

/* Advantages Section */
.advantages {
  margin-bottom: calc(var(--space-3xl) * 1.5);
}

.advantages h2 {
  text-align: center;
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-3xl);
  position: relative;
}

.advantages h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

.advantage-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--border-light);
  height: 100%;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.advantage-icon i {
  color: var(--color-primary);
  transition: all var(--duration-normal) var(--ease-out);
}

.advantage-card:hover .advantage-icon i {
  color: var(--color-live-green);
  transform: scale(1.15) rotate(5deg);
}

.advantage-card h5 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-semibold);
  margin: var(--space-lg) 0;
}

.advantage-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: var(--font-primary-GMB);
  text-align: center;
  margin: 0;
}

/* Use Cases Section */
.use-cases h2 {
  text-align: center;
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-3xl);
  position: relative;
}

.use-cases h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

.use-case-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--border-light);
  height: 100%;
  overflow: hidden;
}

.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.use-case-card .card-body {
  padding: var(--space-2xl);
  justify-items: center;
}

.use-case-card h5 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
}

.use-case-card h5 i {
  margin-right: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.use-case-card:hover h5 i {
  color: var(--color-grandpa-orange);
  transform: scale(1.1);
}

.use-case-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-family: var(--font-primary-GMB);
  text-align: center;
  margin: 0;
}

/* Technical Requirements */
.tech-requirements h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.tech-requirements h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 4px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

.alert-info {
  background: linear-gradient(47deg, rgba(255, 255, 255, 1) 0%, rgb(244 58 9 / 15%) 100%);
  border: 1px solid #f43a09;
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.alert-info h5 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xl);
}

.alert-info i {
  color: var(--color-live-green);
}

.alert-info ul {
  margin-bottom: 0;
  padding-left: var(--space-2xl);
}

.alert-info li {
  font-family: var(--font-primary-GMB);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* Pricing Section - Simplified */
.pricing-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(194, 237, 218, 0.15) 100%);
  padding: var(--space-3xl);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-3xl);
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

/* Remove scroll from pricing section */
.pricing-section * {
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

.pricing-section .row {
  overflow: visible !important;
  height: auto !important;
}

.pricing-section .col-lg-4 {
  overflow: visible !important;
  height: auto !important;
}

/* Bootstrap row override for pricing section */
.pricing-section .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.pricing-section .justify-content-center {
  justify-content: center !important;
  height: auto !important;
  overflow: visible !important;
}

/* Ensure price cards don't have height restrictions */
.pricing-section .price-card {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.pricing-section .price-body {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  flex-grow: 0 !important;
}

.pricing-section .price-features {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.pricing-section h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.pricing-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: var(--gradient-button-shape);
  border-radius: 2px;
}

/* Price Cards - Enhanced Design matching screenshot */
.price-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-2xl);
  overflow: visible;
  transition: all var(--duration-normal) var(--ease-out);
  border: 2px solid rgba(244, 58, 9, 0.2);
  height: auto;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(15px);
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(244, 58, 9, 0.25);
  border-color: rgba(244, 58, 9, 0.4);
  background: rgba(255, 255, 255, 1);
}

.price-card.featured {
  border: 3px solid var(--color-primary);
  background: rgba(255, 255, 255, 1);
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(244, 58, 9, 0.2);
  position: relative;
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.02) 0%, rgba(255, 183, 102, 0.02) 100%);
  pointer-events: none;
  z-index: 1;
}

.price-card.featured * {
  position: relative;
  z-index: 2;
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.price-header {
  background: transparent;
  padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  border-bottom: 1px solid rgba(244, 58, 9, 0.1);
  text-align: center;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price-card.featured .price-header {
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.03) 0%, rgba(255, 183, 102, 0.03) 100%);
  border-bottom: 1px solid rgba(244, 58, 9, 0.2);
}

.price-header h5 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  font-weight: var(--font-weight-semibold);
  margin: 0 0 var(--space-sm);
  font-size: 1.125rem;
  line-height: 1.4;
}

.badge {
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
}

.bg-success {
  background: var(--color-live-green) !important;
  color: var(--text-inverse);
}

.price-body {
  padding: var(--space-2xl) var(--space-2xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  text-align: center;
  height: auto;
}

.price {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.text-muted {
  color: var(--text-secondary);
  font-family: var(--font-primary-GMB);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
}

.price-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: rgba(194, 237, 218, 0.2);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) var(--ease-out);
  font-family: var(--font-primary-GMB);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.price-features li:hover {
  background: rgba(194, 237, 218, 0.35);
}

.price-features li::before {
  content: '✓';
  color: var(--color-live-green);
  font-weight: var(--font-weight-bold);
  margin-right: var(--space-md);
  font-size: 1rem;
}

/* Button Styles - Using brand colors */
.btn {
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-xl);
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  min-width: 120px;
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-brightly-orange);
  border: 2px solid var(--color-brightly-orange);
}

.btn-outline-primary:hover {
  background: var(--gradient-button-shape);
  color: var(--text-inverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--gradient-button-shape);
  color: var(--text-inverse);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-grandpa-orange) 0%, var(--color-brightly-orange) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

/* Additional Info Alert */
.additional-info {
  margin-top: var(--space-2xl);
}

.alert-warning {
  background: linear-gradient(135deg, rgba(255, 183, 102, 0.1) 0%, rgba(255, 183, 102, 0.2) 100%);
  border: 1px solid var(--color-grandpa-orange);
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.alert-warning i {
  color: var(--color-grandpa-orange);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-outline-dark:hover {
  background: var(--text-primary);
  color: var(--text-inverse);
  transform: translateY(-1px);
}

/* FAQ Section */
.faq__block {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  margin-bottom: var(--space-3xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 58, 9, 0.1);
  box-shadow: 0 4px 20px rgba(244, 58, 9, 0.08);
}

.faq__block h2 {
  color: var(--text-primary);
  font-family: var(--font-primary-GEB);
  text-align: center;
  /* margin-bottom: var(--space-2xl); */
  position: relative;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.faq__block h2::after {
  /* content: ''; */
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-grandpa-orange) 100%);
  border-radius: 2px;
}

.accordion-item {
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xs);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(244, 58, 9, 0.08);
}

.accordion-item:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(244, 58, 9, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(244, 58, 9, 0.1);
}

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

.accordion-button {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  width: 100%;
  text-align: left;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: none;
  font-size: 1rem;
  line-height: 1.5;
  background-image: none !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(244, 58, 9, 0.05) 0%, rgba(255, 183, 102, 0.05) 100%);
  color: var(--color-primary);
  background-image: none !important;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button:hover {
  color: var(--color-primary);
}

.accordion-button::after {
  content: '+';
  position: absolute;
  right: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  transition: all var(--duration-normal) var(--ease-out);
  background-image: none !important;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 58, 9, 0.1);
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  color: var(--text-inverse);
  background: var(--color-primary);
  background-image: none !important;
}

.accordion-button:hover::after {
  background: rgba(244, 58, 9, 0.2);
}

.accordion-button:not(.collapsed):hover::after {
  background: var(--color-grandpa-orange);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.3);
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top: 1px solid rgba(244, 58, 9, 0.1);
  margin: 0;
}

.accordion-body p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-primary-GMB);
  font-weight: var(--font-weight-medium);
  text-align: justify;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(47deg, rgba(255, 255, 255, 1) 0%, rgb(244 58 9 / 15%) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  color: var(--text-inverse);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.cta-section * {
  position: relative;
  z-index: 2;
}

.cta-section h3 {
  color: #2c3e50;
  font-family: var(--font-primary-GEB);
  margin-bottom: var(--space-xl);
  text-shadow: 0 0.4px 0.5px #3d3d3d;
}

.cta-section p {
  color: #2c3e50;
  font-size: 1.125rem;
  line-height: 1.7;
  font-family: var(--font-primary-GMB);
  max-width: 860px;
  margin: 0 auto var(--space-2xl);
  text-align: justify;
  text-shadow: 0 0.4px 0.5px #3d3d3d;
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 200px;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .container.py-5 {
    padding-top: calc(var(--space-3xl) + 60px) !important;
  }
  
  .hero-section {
    padding: var(--space-3xl);
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 991.98px) {
  .hero-section .row {
    flex-direction: column;
  }
  
  .hero-section .col-lg-6:first-child {
    margin-bottom: var(--space-2xl);
    text-align: center;
  }
  
  .hero-features {
    max-width: 600px;
    margin: var(--space-xl) auto 0;
  }
  
  .pricing-section {
    padding: var(--space-3xl);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
  .container.py-5 {
    padding-top: calc(var(--space-2xl) + 50px) !important;
  }
  
  .hero-section {
    padding: var(--space-2xl);
    margin-bottom: var(--space-3xl);
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.125rem;
  }
  
  .service-description {
    padding: var(--space-2xl);
  }
  
  .platform-card,
  .advantage-card,
  .use-case-card .card-body {
    padding: var(--space-2xl);
  }
  
  .pricing-section {
    padding: var(--space-2xl);
  }
  
  .faq__block {
    padding: var(--space-lg) var(--space-xl);
  }
  
  .cta-section {
    padding: var(--space-3xl);
  }
}

@media (max-width: 575.98px) {
  .container.py-5 {
    padding-top: calc(var(--space-xl) + 40px) !important;
  }
  
  .hero-section {
    padding: var(--space-xl);
  }
  
  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: var(--space-xl);
  }
  
  .feature-item {
    padding: var(--space-md);
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  
  .platform-card,
  .advantage-card {
    padding: var(--space-xl);
  }
  
  .use-case-card .card-body {
    padding: var(--space-xl);
  }
  
  .pricing-section {
    padding: var(--space-xl);
  }
  
  .price-header {
    padding: var(--space-lg);
  }
  
  .price-body {
    padding: var(--space-xl);
  }
  
  .accordion-button {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.95rem;
  }
  
  .accordion-button::after {
    width: 18px;
    height: 18px;
    font-size: 1rem;
    right: var(--space-md);
  }
  
  .accordion-body {
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }
}

/* Animation Enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-section,
.service-description,
.faq__block,
.cta-section {
  animation: fadeInUp var(--duration-elegant) var(--ease-out);
}

.platform-card,
.advantage-card,
.use-case-card,
.price-card {
  animation: fadeInUp var(--duration-elegant) var(--ease-out);
}

/* Stagger animation delays */
.platform-card:nth-child(1) { animation-delay: 0.1s; }
.platform-card:nth-child(2) { animation-delay: 0.2s; }
.platform-card:nth-child(3) { animation-delay: 0.3s; }
.platform-card:nth-child(4) { animation-delay: 0.4s; }

.advantage-card:nth-child(1) { animation-delay: 0.15s; }
.advantage-card:nth-child(2) { animation-delay: 0.25s; }
.advantage-card:nth-child(3) { animation-delay: 0.35s; }
.advantage-card:nth-child(4) { animation-delay: 0.45s; }

.use-case-card:nth-child(odd) { animation-delay: 0.2s; }
.use-case-card:nth-child(even) { animation-delay: 0.3s; }

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.2s; }
.price-card:nth-child(3) { animation-delay: 0.3s; }

/* Focus and accessibility improvements */
.btn:focus {
  outline: 2px solid var(--color-live-green);
  outline-offset: 2px;
}

.accordion-button:focus {
  outline: none;
  box-shadow: none;
}

/* Print styles */
@media print {
  .hero-section,
  .platform-card,
  .advantage-card,
  .use-case-card,
  .price-card,
  .faq__block,
  .cta-section {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .btn {
    display: none;
  }
  
  .container.py-5 {
    padding-top: 0 !important;
  }
}