/* Comparison Pages Styles - Agicap & Fygr */

/* Hero Section */
.comparison-hero {
  padding-top: 40px;
  padding-bottom: 60px;
}

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

.hero_content {
  max-width: 600px;
}

.hero-images_wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero_image {
  width: 100%;
  height: auto;
  display: block;
}

/* Pricing Comparison Cards */
.pricing-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem 0;
}

.pricing-card {
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.trezy {
  background: linear-gradient(135deg, #00ac8e 0%, #00d2a0 100%);
  color: white;
}

.pricing-card.competitor {
  background: #f8f9fa;
  color: #6b7280;
}

.pricing-label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-period {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.pricing-setup {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* Trust Points */
.trust-points {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #6b7280;
  animation: fadeIn 0.6s ease;
}

.trust-point .check {
  color: #00ac8e;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Profile Section */
.profile-section {
  background-color: #1c1c1e;
  padding: 80px 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.profile-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
}

.profile-card.trezy {
  background: linear-gradient(135deg, rgba(0, 172, 142, 0.05) 0%, rgba(0, 210, 160, 0.05) 100%);
  border: 2px solid #00d2a0;
}

.profile-card .icon-wrapper {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.profile-card h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.profile-card ul {
  list-style: none;
  padding: 0;
}

.profile-card li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
}

/* Differentiation Points */
.differentiation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.differentiation-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.differentiation-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  border-color: #00d2a0;
}

.market-comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.market-card {
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid;
}

.market-card.trezy {
  background: rgba(0, 172, 142, 0.1);
  border-left-color: #00ac8e;
}

.market-card.competitor {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.3);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead th {
  background: #f8f9fa;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid #e5e7eb;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: #fafafa;
}

.comparison-table tbody td {
  padding: 1.25rem 1.5rem;
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: #1c1c1e;
}

.comparison-note {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 16px;
  margin-top: 3rem;
  text-align: center;
}

/* Demo Section */
.demo-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.demo-iframe-wrapper {
  position: relative;
  box-sizing: content-box;
  max-height: 80vh;
  width: 100%;
  aspect-ratio: 2.0837282780410744;
  animation: fadeInUp 0.8s ease;
}

.demo-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Process Steps */
.process-section {
  background-color: #000000;
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ac8e 0%, #00d2a0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  transform: translateY(-4px);
}

.process-step-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00ac8e;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step-time {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00ac8e;
  margin-top: 0.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-wrapper {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c1c1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background 0.2s ease;
}

.faq-item summary:hover {
  background: #fafafa;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  color: #00ac8e;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  color: #6b7280;
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #00ac8e 0%, #00d2a0 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.final-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='white' stroke-width='0.5' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.final-cta-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.final-cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.final-cta-primary {
  display: inline-block;
  background: white;
  color: #00ac8e;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.final-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.final-cta-secondary {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.final-cta-secondary:hover {
  opacity: 0.8;
}

.final-cta-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}

.final-cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
}

.fade-in-delay-3 {
  animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero_content {
    text-align: center;
    margin: 0 auto;
  }
  
  .pricing-comparison-grid {
    margin: 2rem auto;
  }
  
  .trust-points {
    justify-content: center;
  }
  
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .differentiation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .final-cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .comparison-hero {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  
  .hero_content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .pricing-comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 1.25rem;
  }
  
  .trust-points {
    flex-direction: column;
    gap: 1rem;
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.75rem;
  }
  
  .demo-iframe-wrapper {
    aspect-ratio: 16/10;
  }
  
  .process-section,
  .faq-section,
  .demo-section {
    padding: 60px 0;
  }
  
  .final-cta-section {
    padding: 60px 0;
  }
  
  .final-cta-title {
    font-size: 2rem;
  }
  
  .final-cta-subtitle {
    font-size: 1rem;
  }
  
  .final-cta-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .faq-item summary {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}

@media (max-width: 479px) {
  .hero_content h1 {
    font-size: 1.75rem;
  }
  
  .pricing-amount {
    font-size: 1.75rem;
  }
  
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
  
  .comparison-table thead {
    display: none;
  }
  
  .comparison-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
  }
  
  .comparison-table tbody td {
    display: block;
    padding: 0.5rem 0;
    border: none;
  }
  
  .comparison-table tbody td:before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  .final-cta-primary {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.margin-top-xl {
  margin-top: 4rem;
}

.margin-bottom-xl {
  margin-bottom: 4rem;
}

.visible {
  opacity: 1 !important;
}