/* Base styles */
:root {
  --color-dark: #1a1f36;
  --color-dark-lighter: #2a2f46;
  --color-blue: #3a86ff;
  --color-blue-dark: #2563eb;
  --color-purple: #8338ec;
  --color-purple-dark: #7c3aed;
  --color-teal: #06b6d4;
  --color-teal-dark: #0891b2;
  --color-green: #10b981;
  --color-yellow: #fbbf24;
  --color-red: #ef4444;
  --color-orange: #ff9f1c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--color-dark);
  color: white;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  background-color: var(--color-dark-lighter);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo {
  color: var(--color-blue);
  margin-right: 0.5rem;
}

.navbar-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.navbar-links {
  display: flex;
  gap: 1rem;
}

.navbar-link {
  padding: 0.5rem 1rem;
  background-color: var(--color-blue);
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.navbar-link:hover {
  background-color: var(--color-blue-dark);
}

/* Free Trial Banner */
.free-trial-banner {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-blue) 100%);
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 2rem 0 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.free-trial-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  animation: pulse 8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

.free-trial-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.free-trial-badge {
  display: inline-block;
  background-color: var(--color-orange);
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

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

.free-trial-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.free-trial-text {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero section */
.hero {
  background-color: var(--color-blue);
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 1rem 0 3rem;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-purple);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--color-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-blue {
  background-color: var(--color-blue);
  color: white;
}

.btn-blue:hover {
  background-color: var(--color-blue-dark);
}

.btn-purple {
  background-color: var(--color-purple);
  color: white;
}

.btn-purple:hover {
  background-color: var(--color-purple-dark);
}

.btn-teal {
  background-color: var(--color-teal);
  color: white;
}

.btn-teal:hover {
  background-color: var(--color-teal-dark);
}

.btn-green {
  background-color: var(--color-green);
  color: white;
}

.btn-green:hover {
  background-color: #0da271;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-cta {
  background-color: var(--color-orange);
  color: white;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  background-color: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Features section */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--color-dark-lighter);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  background-color: var(--color-purple);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-description {
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.feature-check {
  color: var(--color-green);
  margin-right: 0.5rem;
}

.feature-trial {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-trial p {
  font-weight: 600;
  color: var(--color-yellow);
}

/* Trial CTA Section */
.trial-cta-section {
  background: linear-gradient(135deg, var(--color-dark-lighter) 0%, var(--color-dark) 100%);
  border-radius: 0.5rem;
  padding: 3rem 2rem;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.trial-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(131, 56, 236, 0.1) 0%, rgba(58, 134, 255, 0.1) 100%);
}

.trial-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.trial-cta-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff 0%, #d1d5db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trial-cta-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #d1d5db;
}

.trial-cta-image {
  position: relative;
  z-index: 1;
  display: none;
}

@media (min-width: 768px) {
  .trial-cta-image {
    display: block;
  }
}

.trial-cta-image svg {
  color: var(--color-orange);
  opacity: 0.8;
}

/* Pricing section */
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pricing-description {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.pricing-badge {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-dark);
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .pricing-plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-plan {
  background-color: var(--color-dark-lighter);
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pricing-plan.popular {
  border: 2px solid var(--color-purple);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-purple);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
}

.free-trial-tag {
  position: absolute;
  top: 1rem;
  right: 0;
  background-color: var(--color-orange);
  color: white;
  padding: 0.25rem 1rem 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
  animation: pulse-light 2s infinite;
}

@keyframes pulse-light {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.plan-badge {
  align-self: flex-start;
  background-color: var(--color-yellow);
  color: var(--color-dark);
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: normal;
}

.plan-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.plan-highlight {
  background-color: rgba(251, 191, 36, 0.1);
  border: 1px solid var(--color-yellow);
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  color: var(--color-yellow);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.plan-feature-icon {
  color: var(--color-green);
  margin-right: 0.5rem;
}

.free-trial-info {
  background-color: rgba(255, 159, 28, 0.1);
  border: 1px solid var(--color-orange);
  border-radius: 0.375rem;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.free-trial-info-icon {
  color: var(--color-orange);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.free-trial-info-text {
  font-size: 0.875rem;
  color: var(--color-orange);
}

/* Checkout page */
.checkout-container {
  max-width: 1000px;
  margin: 0 auto;
}

.back-link {
  display: flex;
  align-items: center;
  color: var(--color-blue);
  text-decoration: none;
  margin-bottom: 2rem;
}

.back-link:hover {
  color: #60a5fa;
}

.back-icon {
  margin-right: 0.25rem;
}

.checkout-card {
  background-color: var(--color-dark-lighter);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.checkout-content {
  padding: 2rem;
}

.checkout-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.checkout-summary {
  background-color: var(--color-dark);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkout-summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.checkout-summary-label {
  color: #d1d5db;
}

.checkout-summary-value {
  font-weight: 500;
}

.checkout-summary-total {
  font-size: 1.25rem;
}

.checkout-features {
  background-color: var(--color-dark);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.checkout-features-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.checkout-features-list {
  list-style: none;
}

.checkout-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.checkout-feature-icon {
  color: var(--color-green);
  margin-right: 0.5rem;
}

.payment-info {
  background-color: var(--color-dark);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.payment-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.payment-info-text {
  margin-bottom: 1rem;
}

.qr-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.qr-code {
  background-color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.wallet-container {
  background-color: var(--color-dark);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #4b5563;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.wallet-address {
  font-size: 0.875rem;
  overflow-x: auto;
  white-space: nowrap;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.copy-btn {
  background-color: var(--color-blue);
  color: white;
  border: none;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
}

.copy-btn:hover {
  background-color: var(--color-blue-dark);
}

.alert {
  background-color: rgba(251, 191, 36, 0.1);
  border: 1px solid var(--color-yellow);
  border-radius: 0.375rem;
  padding: 0.75rem;
  color: var(--color-yellow);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.alert-icon {
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.telegram-connect {
  background-color: var(--color-dark);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.telegram-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.telegram-text {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.input-group {
  display: flex;
}

.input-addon {
  display: inline-flex;
  align-items: center;
  padding: 0 0.75rem;
  border: 1px solid #4b5563;
  border-right: 0;
  background-color: var(--color-dark-lighter);
  color: #9ca3af;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.form-input {
  flex: 1;
  min-width: 0;
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: var(--color-dark-lighter);
  border: 1px solid #4b5563;
  color: white;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 1px var(--color-blue);
}

.form-footer {
  font-size: 0.875rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 1rem;
}

/* Free Trial Download Section */
.free-trial-download {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-yellow) 100%);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.free-trial-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.free-trial-download-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.free-trial-download-text {
  flex: 1;
  min-width: 200px;
}

.free-trial-download-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.free-trial-download-description {
  font-size: 0.875rem;
  color: var(--color-dark);
}

.free-trial-download-button {
  background-color: var(--color-dark);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.free-trial-download-button:hover {
  background-color: var(--color-dark-lighter);
  transform: translateY(-2px);
}

.free-trial-download-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Download Modal */
.download-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.download-modal.active {
  opacity: 1;
  visibility: visible;
}

.download-modal-content {
  background-color: var(--color-dark-lighter);
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.download-modal.active .download-modal-content {
  transform: translateY(0);
  opacity: 1;
}

.download-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-modal-close:hover {
  color: white;
}

.download-modal-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.download-modal-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.download-modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.download-modal-text {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #d1d5db;
}

.download-modal-button {
  background-color: var(--color-orange);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  transition: all 0.3s ease;
}

.download-modal-button:hover {
  background-color: #e67e00;
}

.download-progress {
  height: 0.5rem;
  background-color: var(--color-dark);
  border-radius: 9999px;
  margin: 1.5rem 0;
  overflow: hidden;
}

.download-progress-bar {
  height: 100%;
  background-color: var(--color-green);
  width: 0;
  transition: width 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .pricing-title {
    font-size: 2rem;
  }
  
  .checkout-title {
    font-size: 1.5rem;
  }
  
  .wallet-address {
    font-size: 0.75rem;
  }
  
  .free-trial-title {
    font-size: 1.75rem;
  }
  
  .free-trial-download-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .free-trial-download-button {
    width: 100%;
    justify-content: center;
  }
}

/* Animation for download button */
@keyframes pulse-download {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 159, 28, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
  }
}

.pulse-animation {
  animation: pulse-download 2s infinite;
}
