/* biztheme/css/pricing-page.css 
   for page page--node--get-verified.html.twig */

.pricing-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content img {
  width: clamp(10.625rem, 8.75rem + 10vw, 16.875rem);
  margin: 0 auto 48px;
}

.hero-content h2 {
  font-size: clamp(2rem, 1.6471rem + 1.7647vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem clamp(0.5rem, -0.3235rem + 4.1176vw, 2.25rem);
}

.pricing-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-intro h2 {
  font-size: clamp(2rem, 1.6471rem + 1.7647vw, 2.75rem);
  margin-bottom: 1rem;
  color: #333;
}

.pricing-intro figure {
  margin: 2rem 0;
}

.pricing-intro img {
  border-radius: 4px;
  margin: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
}

.pricing-intro figcaption {
  margin-top: 1rem;
  color: #666;
  font-style: italic;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  border-radius: 25px;
  font-weight: 500;
}

.section-badge {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b6b;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: #667eea;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #667eea;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  width: 175px;
  text-align: center;
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.card-header h4 {
    font-size: clamp(1.75rem, 1.2422rem + 1.2403vw, 2.25rem);
    margin-bottom: 1rem;
}

.price {
  font-size: clamp(1.5rem, 0.6277rem + 1.9967vw, 2.25rem);
  font-weight: 700;
  color: #667eea;
  line-height: 1;
}

.price-note {
  color: #666;
  font-size: 0.9rem;
}

.card-cta {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.cta-button.primary {
  background: #667eea;
  color: white;
}

.cta-button.primary:hover {
  background: #5a6fd8;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: #667eea;
  border-color: #667eea;
}

.cta-button.secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.cta-button.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.extra-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.extra-page-card {
  background: white;
  padding: 2rem 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.extra-page-card:hover {
  transform: translateY(-3px);
}

.extra-page-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.extra-page-card h4 {
  margin-bottom: 1rem;
  color: #333;
  /*Below to make only one word in a line*/
  display: inline-block;
  max-width: min-content;
}

.final-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin: 4rem 0;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.feature-icon {
  font-size: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-note {
  opacity: 0.9;
  font-size: 0.9rem;
}

.trust-section {
  text-align: center;
  padding: 4rem clamp(1rem, 0.4118rem + 2.9412vw, 2.25rem);
  background: #f8f9fa;
  border-radius: 20px;
  margin: 3rem 0;
}

.trust-section h3 {
  margin-bottom: 3rem;
  color: #333;
  font-size: 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-item {
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-number {
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 1rem;
  display: block;
}

/* Pulse animation for trust numbers */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.trust-number.animated {
  animation: pulse 0.7s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .trust-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .final-cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-features {
    grid-template-columns: 1fr;
  }
}

.features-list li:last-child {
  border-bottom: none;
}

.extra-page-card p {
  color: #666;
  margin: 0;
}

/* Focus styles for accessibility */
.cta-button:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* ROI Teaser Styles */
.roi-teaser {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: clamp(3rem, 3.4706rem + -2.3529vw, 2rem) clamp(1rem, 0.4118rem + 2.9412vw, 2.25rem);
  border-radius: 15px;
  margin: 2rem 0 4rem 0;
  text-align: center;
}

.roi-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.roi-teaser-item {
  padding: clamp(0.5rem, -0.0588rem + 2.7941vw, 1.6875rem);
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.teaser-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.teaser-content h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.teaser-content p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.roi-teaser-cta {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .roi-teaser-grid {
    grid-template-columns: 1fr;
  }
}

/*<!-- ROI Calculator CSS -->*/

  .roi-calculator {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: clamp(2rem, 1.6735rem + 1.6327vw, 3rem) clamp(1rem, 0.3469rem + 3.2653vw, 3rem);
    border-radius: 20px;
    max-width: 600px;
    margin: 3rem auto;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .roi-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  }

  .roi-calculator h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }

  .calculator-form {
    position: relative;
    z-index: 2;
  }

  .roi-calculator h3 {
    text-align: center;
}
  
  .roi-calculator label {
    display: block;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
  }

  .roi-calculator select,
  .roi-calculator input {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
  }

  .roi-calculator select:focus,
  .roi-calculator input:focus {
    outline: none;
    border-color: #ffd700;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .roi-calculator .output {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .output h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
  }

  .output p {
    margin: 0.75rem 0;
    line-height: 1.5;
  }

  .output strong {
    color: #333;
  }

  .roi-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 0.5rem;
  }

.business-types-section {
  padding: 4rem clamp(0.5rem, -0.3235rem + 4.1176vw, 2.25rem);
  text-align: center;
}

.business-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.business-type-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.business-type-card:hover {
  transform: translateY(-5px);
}

.business-type-card.featured {
  border: 2px solid #667eea;
  transform: scale(1.05);
}

.type-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.business-type-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 1.2422rem + 1.2403vw, 2.25rem);
}

.capacity {
  font-weight: 600;
  color: #667eea;
  margin-bottom: 1rem;
}

.type-description {
  color: #666;
  line-height: 1.5;
}

.pricing-section {
  margin: 4rem 0;
  padding: clamp(0.5rem, -0.3235rem + 4.1176vw, 2.25rem);
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.recommended-package {
  border: 2px solid #ff6b6b;
}

.package-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b6b;
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.package-header {
  text-align: center;
  margin-bottom: 3rem;
}

.package-header h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 1.6471rem + 1.7647vw, 2.75rem);
  margin: 32px 0;
}

.package-subtitle {
  color: #666;
  font-size: 1.2rem;
}

.package-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.benefits-list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.includes-section {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.includes-section h4 {
  color: #333;
  margin-bottom: 1rem;
}

.includes-section ul {
  list-style: none;
  padding: 0;
}

.includes-section li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 1.5rem;
}

.includes-section li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.use-cases {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.use-case {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.use-case strong {
  color: #333;
  margin-bottom: 0.25rem;
}

.use-case span {
  color: #666;
  font-size: 0.9rem;
}

.calculator-section {
  margin: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 1.6471rem + 1.7647vw, 2.75rem);
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

@media (max-width: 699px) {
  .package-description {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .business-type-card.featured {
    transform: none;
  }
}

.output.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

@media (min-width: 700px) {
  .package-description {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
    min-height: 600px;
  }
  
  .description-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 2.5rem;
  }
  
  .benefits-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  .benefit-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .benefit-item:last-child {
    border-bottom: none;
  }
}

@media (min-width: 700px) {
  .basic-listings .package-description {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
    min-height: 600px;
  }
  
  .basic-listings .description-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 2.5rem;
  }
  
  .basic-listings .features-grid {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1.5rem;
  }
  
  .basic-listings .feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.2s ease;
  }
  
  .basic-listings .feature-item:hover {
    transform: translateX(5px);
  }
  
  .basic-listings .feature-item:last-child {
    border-bottom: none;
  }
}

@media (min-width: 700px) {
  .extra-pages .package-description {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
    min-height: 550px;
  }
  
  .extra-pages .description-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 2.5rem;
  }
  
  .extra-pages .use-cases {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1.5rem;
  }
  
  .extra-pages .use-case {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
  }
  
  .extra-pages .use-case:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .extra-pages .use-case strong {
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .extra-pages .use-case span {
    color: #666;
    line-height: 1.4;
  }
    
  .extra-page-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
}






