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

body {
  font-family: var(--lqd-body-font-family);
  line-height: 1.6;
  color: #1f2937;
  background-color: #f8fafc;
}

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

@media (max-width: 768px) {
  .container {
    margin-top: 10rem;
  }
}

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

@media (max-width: 768px) {
  .pricing-container {
    margin-top: 0rem;
  }
}

.hero-section {
  background: linear-gradient(
    135deg,
    #312e81 0%,
    #3730a3 25%,
    #7c3aed 75%,
    #1e40af 100%
  );
  color: white;
  padding: 4rem 0 2rem;
  text-align: center;
  min-height: auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-gradient {
  background: var(--lqd-color-secondary);
  /* background: linear-gradient(135deg, #60a5fa, #a78bfa); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-section {
  padding: 4rem 0;
  background: white;
}

.tab-navigation {
  margin: 3rem auto 2rem;
  display: flex;
  justify-content: center;
}

.desktop-tabs {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 0.5rem;
  gap: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
}

.mobile-dropdown {
  display: none;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  margin: 0.125rem 0.5rem;
  background: none;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
  position: relative;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.tab-button.active {
  background: linear-gradient(135deg, #7c3aed, #372f9f);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.25);
  transform: scale(1.05);
}

.tab-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.tab-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 1rem;
  font-weight: 500;
  color: white;
  appearance: none;
  cursor: pointer;
}

.tab-select option {
  background: #1f2937;
  color: white;
}

.tab-content {
  min-height: 600px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease-out forwards;
}

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

.tab-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tab-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.2;
  text-align: center;
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
    height: 1rem;
  }
}

.text-blue {
  color: #3b82f6;
}

.tab-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.shield-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #3b82f6;
  fill: none;
  stroke-width: 2;
}

.traffic-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.traffic-selector label {
  font-weight: 500;
  color: #374151;
}

.traffic-dropdown {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  background: white;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  min-width: 250px;
  transition: border-color 0.3s ease;
}

.traffic-dropdown:hover {
  border-color: #3b82f6;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.toggle-button {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 500;
  color: #64748b;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
}

.toggle-button:hover {
  color: #374151;
}

.toggle-button.active {
  color: var(--lqd-color-primary);
  text-decoration: underline;
}

.save-badge {
  background: #007850;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

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

.pricing-card.popular {
  border: 2px solid var(--lqd-color-primary);
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* background: linear-gradient(135deg, #3b82f6, #8b5cf6); */
  background: linear-gradient(
    135deg,
    #312e81 0%,
    #3730a3 25%,
    #7c3aed 75%,
    #1e40af 100%
  );
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.recommended-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  background: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-header {
  padding: 2rem 2rem 0;
  text-align: center;
}

.card-header.with-badge {
  padding-top: 3rem;
}

.card-title-section {
  background: linear-gradient(135deg, #64748b, #374151);
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.card-title-section.blue {
  background: linear-gradient(
    135deg,
    #312e81 0%,
    #3730a3 25%,
    #7c3aed 75%,
    #1e40af 100%
  );
}

.card-title-section.purple {
  background: linear-gradient( 135deg, rgb(90, 37, 215) 0%, rgb(236, 173, 75) 100% );;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.card-description {
  font-size: 0.875rem;
  opacity: 0.9;
  color: white;
}

.card-pricing {
  text-align: center;
  padding: 0 2rem 1.5rem;
}

.original-price {
  color: #b50000;
  text-decoration: line-through;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lqd-color-primary);
  margin-bottom: 0.25rem;
}

.price-period {
  color: #64748b;
  font-size: 1rem;
  font-weight: 400;
}

.price-details {
  color: var(--lqd-color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.card-content {
  padding: 0 2rem 2rem;
}

.card-button {
  width: 100%;
  background-color: var(--lqd-color-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.card-button:hover {
  background-color: var(--lqd-color-primary);
  transform: scale(1.05);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}

.card-button.secondary {
  background: #1f2937;
  color: white;
}

.card-button.secondary:hover {
  background: #111827;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
}

.feature-icon {
  width: 1rem;
  height: 1rem;
  stroke: #22c55e;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.view-features {
  text-align: center;
  margin: 3rem 0;
}

.view-features-btn {
  background: #10b981;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.view-features-btn:hover {
  background: #059669;
  transform: scale(1.05);
}

.free-widget-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: #64748b;
}

.widget-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #3b82f6;
  fill: none;
  stroke-width: 2;
}

.link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.link:hover {
  text-decoration: underline;
}

.bundle-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.bundle-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.bundle-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.bundle-card:hover .bundle-icon {
  transform: scale(1.1);
}

.bundle-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.bundle-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.bundle-description {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.875rem;
}

.bundle-button {
  background: var(--lqd-color-primary);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bundle-button:hover {
  background: #1d4ed8;
  transform: scale(1.05);
}

.comparison-table-container {
  margin: 4rem 0;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.comparison-table-desktop {
  display: block;
  overflow-x: auto;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.comparison-table th,
.comparison-table td {
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.comparison-table td .feature-info {
  text-align: left;
}

.comparison-table th {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  font-weight: 700;
  color: #374151;
  font-size: 1.125rem;
}

.comparison-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.02);
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(248, 250, 252, 0.3);
}

.feature-column {
  width: 40%;
}

.bundle-column {
  width: 20%;
  text-align: center;
}

.feature-row {
  font-weight: 500;
}

.feature-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon-table {
  width: 3rem;
  height: 3rem;
  stroke: #64748b;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 0.75rem;
  padding: 0.5rem;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.status-cell {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.status-cell.included div,
.feature-status.included div {
  color: white;
  background-color: #22c55e;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.status-cell.excluded div,
.feature-status.excluded div {
  color: white;
  background-color: #ef4444;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.comparison-mobile {
  display: none;
  gap: 2rem;
}

.bundle-comparison-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bundle-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1f2937;
  text-align: center;
  text-transform: capitalize;
}

.feature-list-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
}

.feature-name {
  flex: 1;
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.feature-status {
  font-weight: 700;
  font-size: 1.125rem;
  margin-left: 1rem;
}

.additional-services {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1rem;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

.coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  color: #64748b;
}

.coming-soon h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #374151;
}

@media (max-width: 768px) {
  .mobile-dropdown {
    display: block;
    margin-bottom: 2rem;
    width: 70%;
  }

  .tab-title {
    font-size: 2rem;
  }

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

  .pricing-card.popular {
    transform: none;
  }

  .current-price {
    font-size: 2rem;
  }

  .traffic-selector {
    flex-direction: column;
    gap: 0.5rem;
  }

  .traffic-dropdown {
    min-width: 100%;
  }

  .billing-toggle {
    /* flex-direction: column; */
    gap: 0.5rem;
  }

  .bundle-cards {
    grid-template-columns: 1fr;
  }

  .comparison-table-desktop {
    display: none;
  }

  .comparison-mobile {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .pricing-container {
    padding: 0 0.5rem;
  }

  .hero-section {
    padding: 2rem 0 1rem;
  }

  .pricing-section {
    padding: 2rem 0;
  }

  .card-header,
  .card-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .bundle-card {
    padding: 1.5rem;
  }

  .bundle-comparison-card {
    padding: 1.5rem;
  }

  .comparison-table-container {
    padding: 1rem;
  }
}

.guarantee-badge {
  position: absolute;
  top: 21rem;
  left: 19.5%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.guarantee-badge::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.25rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-top: 0.25rem solid #f59e0b;
}

@media (max-width: 768px) {
  .guarantee-badge {
    display: none;
  }
}

.guarantee-badge-mobile {
  position: absolute;
  top: 18.5%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
  display: none;
}

.guarantee-badge-mobile::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.25rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-bottom: 0.25rem solid #f59e0b;
}

.guarantee-badge-mobile-mobile {
  display: none;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .guarantee-badge-mobile {
    display: block;
  }

  .guarantee-badge-mobile-mobile {
    display: block;
  }
}

@media (min-width: 769px) {
  .guarantee-badge-mobile {
    display: none !important;
  }
}

/* Quote Form Styles */
.quote-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0rem 2rem;
}

.quote-form-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #1f2937;
}

.text-gradient-purple {
  background: linear-gradient(
    50deg,
    rgb(90, 37, 215) 0%,
    rgb(236, 173, 75) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-form {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.form-input {
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 1rem;
  color: #1f2937;
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input:hover {
  border-color: #60a5fa;
}

.form-submit {
  text-align: center;
  margin-bottom: 1.5rem;
}

.submit-button {
  background: linear-gradient(135deg, #7c3aed, #372f9f);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.25);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.submit-button:active {
  transform: translateY(0);
}

.form-disclaimer {
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .desktop-tabs {
    display: none;
  }

  .tab-title {
    font-size: 2rem;
  }

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

  .pricing-card.popular {
    transform: none;
  }

  .current-price {
    font-size: 2rem;
  }

  .traffic-selector {
    flex-direction: column;
    gap: 0.5rem;
  }

  .traffic-dropdown {
    min-width: 100%;
  }

  .billing-toggle {
    /* flex-direction: column; */
    gap: 0.5rem;
  }

  .bundle-cards {
    grid-template-columns: 1fr;
  }

  /* Show mobile cards instead of table on mobile */
  .comparison-table-desktop {
    display: none;
  }

  .comparison-mobile {
    display: flex;
    flex-direction: column;
  }

  .quote-form-title {
    font-size: 2.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .quote-form-container {
    padding: 2rem 1rem;
  }

  .quote-form {
    padding: 1.5rem;
  }

  .submit-button {
    width: 100%;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0 1rem;
  }

  .pricing-section {
    padding: 2rem 0;
  }

  .card-header,
  .card-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .bundle-card {
    padding: 1.5rem;
  }

  .bundle-comparison-card {
    padding: 1.5rem;
  }

  .comparison-table-container {
    padding: 1rem;
  }

  .quote-form-title {
    font-size: 2rem;
  }

  .form-input {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .submit-button {
    font-size: 1rem;
  }
}

.quote-form-description {
  text-align: center;
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 3rem;
}

@media (max-width: 768px) {
  .quote-form-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .quote-form-description {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.checkbox-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  max-width: 600px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
  user-select: none;
  position: relative;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-input:focus + .checkbox-label {
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  outline: none;
}

.checkbox-checkmark {
  position: relative;
  height: 1.25rem;
  width: 1.25rem;
  background-color: white;
  border: 2px solid #d1d5db;
  border-radius: 0.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.25rem;
  top: 0.125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-input:checked ~ .checkbox-checkmark {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-color: #3b82f6;
}

.checkbox-input:checked ~ .checkbox-checkmark::after {
  display: block;
}

.checkbox-label:hover .checkbox-checkmark {
  border-color: #3b82f6;
}

@media (max-width: 768px) {
  .checkbox-group {
    margin: 1.5rem auto;
  }

  .checkbox-label {
    padding: 0.875rem 1.25rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .checkbox-group {
    margin: 1rem auto;
  }

  .checkbox-label {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    text-align: center;
  }
}

.checkbox-input:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

.checkbox-input:focus + .checkbox-checkmark {
  box-shadow: 0 0 0 2px #007cba;
}


.description-card {
  background: rgb(242, 234, 255, 0.95);
  border: 2px solid var(--lqd-color-primary);
  border-radius: 1rem;
  padding: 2rem;
  margin: 0 auto 2rem;
  max-width: 936px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.description-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.description-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .description-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .description-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .description-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .description-text {
    font-size: 0.9375rem;
  }
}