/* main.css */

:root {
  --gradient-primary: linear-gradient(to right, #3b82f6, #10b981);
  --gradient-text: linear-gradient(to right, #60a5fa, #34d399);
  --gradient-dark: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  scroll-behavior: smooth;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(24, 24, 27, 0.8);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #3b82f6, #10b981);
  border-radius: 5px;
  border: 2px solid rgba(24, 24, 27, 0.8);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #60a5fa, #34d399);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #3b82f6 rgba(24, 24, 27, 0.8);
}

/* Base structure for parallax */
html {
  overflow: hidden;
}

body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 2px;
  transform-style: preserve-3d;
  perspective-origin: 50% 45%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  line-height: 1.6;
}

/* Redirect page styles */
.redirect-page {
  background: linear-gradient(to bottom, #18181b, #09090b);
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redirect-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1s ease-in-out;
}

.redirect-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.8s ease-out forwards;
}

.redirect-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.025em;
}

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

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

/* Generic containers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.025em;
}

p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  margin-right: 1rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  background: transparent;
  border: 2px solid transparent;
  background: linear-gradient(#18181b, #18181b) padding-box,
              var(--gradient-primary) border-box;
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Hero section with parallax */
.hero-section {
  position: relative;
  height: 90vh;
  transform-style: preserve-3d;
  transform: translateZ(-0.95px) scale(2);
  z-index: -1;
  display: flex;
  align-items: center;
}

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

.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  z-index: 1;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1000px;
  padding: 8rem 2rem;
  text-align: center;
  z-index: 3;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #f8fafc;
  transform: translateZ(2px) scale(0.8);
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-top: -1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
  transform: translateZ(1px) scale(0.9);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: #f8fafc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transform: translateZ(0.5px) scale(0.95);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  transform: translateZ(0);
}

/* Rest of the content needs to be positioned relative to the viewport */
.main-content {
  position: relative;
  background: linear-gradient(to bottom, #18181b, #09090b);
  z-index: 1;
}

/* How it works */
.how-it-works {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(24, 24, 27, 0) 0%, rgba(24, 24, 27, 0.8) 100%);
}

.how-it-works h2 {
  font-size: 2.15rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  padding: 0 1rem;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  border: 3px solid #18181b;
  box-shadow: var(--shadow-sm);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.step:hover img {
  transform: scale(1.02);
}

.step p {
  font-size: 1.1rem;
  color: #f8fafc;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Features */
.features {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(24, 24, 27, 0) 0%, rgba(24, 24, 27, 0.8) 100%);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--card-border), transparent);
}

.features h2 {
  font-size: 2.15rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.feature-item {
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--gradient-primary);
  color: white;
  transition: transform 0.3s ease;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-item p {
  font-size: 1.1rem;
  color: #f8fafc;
  margin: 0;
  text-align: center;
}

/* Carousel improvements */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  aspect-ratio: 16/9;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.5s opacity ease-in-out;
  width: 100%;
  height: 100%;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  text-align: left;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.slide.active .slide-caption {
  transform: translateY(0);
}

.slide-caption h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.slide-caption p {
  font-size: 1rem;
  margin: 0;
  color: #f8fafc;
  opacity: 0.9;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--gradient-primary);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.carousel-container:hover .carousel-button {
  opacity: 1;
}

.carousel-button:hover {
  transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

.carousel-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.indicator {
  width: 2rem;
  height: 0.25rem;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  border-radius: 1rem;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
  background: var(--gradient-primary);
  width: 3rem;
}

/* Testimonials */
.testimonials {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(24, 24, 27, 0.8) 0%, rgba(24, 24, 27, 0) 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--card-border), transparent);
}

.testimonials h2 {
  font-size: 2.15rem;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.testimonial {
  position: relative;
  padding: 3rem 2rem 2rem;
  background: var(--card-bg);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(96, 165, 250, 0.2);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(#18181b, #18181b) padding-box,
              var(--gradient-primary) border-box;
  transition: transform 0.3s ease;
}

.testimonial:hover .testimonial-image {
  transform: scale(1.05);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial blockquote {
  margin: 0;
  padding: 0;
}

.testimonial blockquote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial blockquote footer cite {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-style: normal;
}

.testimonial .name {
  font-weight: 600;
  color: #f8fafc;
  font-size: 1.1rem;
}

.testimonial .title {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: normal;
}

/* Pricing */
.pricing {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(24, 24, 27, 0) 0%, rgba(24, 24, 27, 0.8) 100%);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--card-border), transparent);
}

.pricing-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.pricing-header h2 {
  font-size: 2.15rem;
}

.pricing-subheadline {
  font-size: 1.25rem;
  color: #f8fafc;
  margin-bottom: 3rem;
}

/* Duration Toggle */
.pricing-duration-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  padding: 0.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.toggle-btn {
  position: relative;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  z-index: 1;
}

.toggle-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.5rem;
  z-index: -1;
}

.toggle-btn:hover {
  color: white;
}

.toggle-btn:hover::before {
  opacity: 0.1;
}

.toggle-btn.active {
  color: white;
}

.toggle-btn.active::before {
  opacity: 1;
}

/* Add a subtle pulse animation when changing tabs */
@keyframes pricePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.price {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price.changing {
  animation: pricePulse 0.5s ease;
}

/* Price Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 1rem;
}

.price-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.5rem;
  padding: 3rem 2rem 1rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.price-card.featured {
  border-color: transparent;
  background: linear-gradient(#18181b, #18181b) padding-box,
              var(--gradient-primary) border-box;
  transform: scale(1.05);
}

.price-card:hover {
  transform: translateY(-5px);
}

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

.price-card-badge {
  position: absolute;
  top: 3.5rem;
  right: -3.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-size: 0.875rem;
  font-weight: 500;
}

.price-card-header {
  margin-bottom: 2rem;
}

.price-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.price .currency {
  font-size: 2rem;
  font-weight: 600;
  color: #f8fafc;
}

.price .duration {
  color: #94a3b8;
  font-size: 1rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.price-features li {
  padding: 0.75rem 0;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-features li::before {
  content: '✓';
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

.price-cta {
  margin-top: 2rem;
}

.price-note {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 1rem;
}

/* Comparison Table */
.pricing-comparison {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.pricing-comparison h3 {
  font-size: 1.75rem;
  margin-bottom: 3rem;
}

.comparison-table {
  overflow-x: auto;
  background: var(--card-bg);
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
}

.comparison-table th {
  color: #f8fafc;
  font-weight: 600;
}

.comparison-table td {
  color: #e2e8f0;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check {
  color: #10b981;
  font-weight: bold;
}

.check-no {
  color: #f87171;
  font-weight: bold;
}

.feature-value {
  color: #f8fafc;
  font-weight: 500;
}

/* Final CTA */
.pricing-final-cta {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--card-bg);
  border-radius: 1.5rem;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
}

.pricing-final-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pricing-final-cta p {
  margin-bottom: 2rem;
  color: #f8fafc;
}

.payment-trust {
  margin-top: 2rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-trust:hover {
  opacity: 1;
}

.payment-trust img {
  height: 2rem;
  width: auto;
}

/* Footer */
.site-footer {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, rgba(24, 24, 27, 0.8), rgba(9, 9, 11, 0.95));
  border-top: 1px solid var(--card-border);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-content h3 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-link {
  color: #f8fafc;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.contact-link:hover {
  background-color: var(--card-bg);
}

.contact-label {
  color: #94a3b8;
  margin-right: 0.5rem;
}

.copyright {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1rem;
  }

  .footer-content h3 {
    font-size: 1.5rem;
  }

  .contact-link {
    font-size: 1rem;
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 0rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    transform: translateZ(1px) scale(0.9);
  }

  .hero-content h2 {
    font-size: 1.5rem;
    transform: translateZ(0.5px) scale(0.95);
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .btn {
    margin-right: 0;
    padding: 0.5rem 1rem;
  }

  .steps,
  .feature-list,
  .testimonial-list,
  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .carousel-button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .carousel-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .slide-caption {
    padding: 1rem;
  }

  .slide-caption h3 {
    font-size: 1.25rem;
  }

  .slide-caption p {
    font-size: 0.875rem;
  }

  .testimonial-list {
    margin-bottom: 0;
  }

  .testimonial {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .testimonial::before {
    font-size: 4rem;
    top: 0.5rem;
    left: 1.5rem;
  }

  .testimonial blockquote p {
    font-size: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-5px);
  }

  .comparison-table {
    margin: 0 -1rem;
    /* border-radius: 0; */
  }

  .pricing-comparison {
    margin-bottom: 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }

  .pricing-final-cta {
    border-radius: 0;
  }
}
