﻿html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
}

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

.hero {
  background : linear-gradient(to right, #6a39b7 0%, #9b3d99 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero .tagline {
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: .95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-primary {
  background: white;
  color: #6a39b7;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

.cta-secondary {
  background: transparent;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border: 2px solid white;
  transition: background .2s;
  display: inline-block;
}

.cta-secondary:hover {
  background: rgba(255,255,255,.1);
}

.video-feature-callout {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 20px 30px;
  margin: 30px auto 0;
  max-width: 700px;
  backdrop-filter: blur(10px);
  color:#fff;
}

.video-feature-callout .icon {
  font-size: 1.8em;
  margin-bottom: 10px;
  display: inline-block;
}

.video-feature-callout p {
  font-size: 1.05em;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .video-feature-callout {
    padding: 15px 20px;
    margin: 20px auto 15px;
  }

  .video-feature-callout p {
    font-size: 0.95em;
    color: #fff;
  }
}

.what-it-is {
  padding: 60px 20px;
  background: white;
}

.what-it-is h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #2c3e50;
}

.what-it-is .intro {
  text-align: center;
  font-size: 1.2em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.how-it-works {
  padding: 60px 20px;
  background: #f8f9fa;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #2c3e50;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #6a39b7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.step p {
  color: #555;
  line-height: 1.6;
}

.features {
  padding: 60px 20px;
  background: white;
}

.features h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #2c3e50;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

.feature h3 {
  color: #6a39b7;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.feature p {
  color: #555;
  line-height: 1.6;
}

.ideas-for-use {
  padding: 60px 20px;
  background: #f8f9fa;
}

.ideas-for-use h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #2c3e50;
}

.ideas-for-use .intro {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.idea-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.idea-icon {
  font-size: 2em;
  margin-bottom: 10px;
}

.idea-item h4 {
  color: #2c3e50;
  font-size: .95em;
}

.demo-section {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.demo-section h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #2c3e50;
}

.demo-section p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

.demo-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.demo-link {
  background: #6a39b7;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background .2s;
}

.demo-link:hover {
  background: #5568d3;
}

.pricing {
  padding: 60px 20px;
  background: #f8f9fa;
}

.pricing h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #2c3e50;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  text-align: center;
  position: relative;
}

.pricing-card.popular {
  border: 3px solid #6a39b7;
  transform: scale(1.05);
}

.popular-badge {
  background: #6a39b7;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: .85em;
  font-weight: bold;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #2c3e50;
}

.price {
  font-size: 2.5em;
  font-weight: bold;
  background: transparent;
  color: #6a39b7;
  margin: 20px 0;
}

.price-period {
  font-size: .5em;
  color: #777;
  font-weight: normal;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.buy-button {
  background: #6a39b7;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: background .2s;
}

.buy-button:hover {
  background: #5568d3;
}

.custom-quote {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: white;
  border-radius: 10px;
}

.custom-quote p {
  color: #555;
  margin-bottom: 15px;
}

.process {
  padding: 60px 20px;
  background: white;
}

.process h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #2c3e50;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.process-step-number {
  min-width: 40px;
  height: 40px;
  background: #6a39b7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-step-content h4 {
  color: #2c3e50;
  margin-bottom: 8px;
}

.process-step-content p {
  color: #555;
  line-height: 1.6;
}

.trial-cta {
  padding: 80px 20px;
  background : linear-gradient(to right, #6a39b7 0%, #9b3d99 100%);
  color: #fff;
  text-align: center;
}

.trial-cta h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.trial-cta p {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: .95;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .hero, .trial-cta {

    background : linear-gradient(to bottom, #6a39b7 0%, #9b3d99 100%);
  }

  .steps, .features-grid, .pricing-grid, .ideas-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .cta-buttons, .demo-links {
    flex-direction: column;
  }
}

.package-selection {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  padding: 40px;
  margin-bottom: 40px;
}

.package-selection h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 2em;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.package-card {
  background: #f8f9fa;
  border: 3px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
  position: relative;
}

.package-card:hover {
  border-color: #6a39b7;
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,.15);
}

.package-card.selected {
  border-color: #6a39b7;
  background: #f0f4ff;
  box-shadow: 0 6px 12px rgba(102, 126, 234, .3);
}

.package-card.popular {
  border-color: #27ae60;
}

.popular-badge {
  background: #27ae60;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: .75em;
  font-weight: bold;
  position: absolute;
  top: -15px;
  left: 25%;
  right: 25%;
}

.package-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.package-price {
  font-size: 2.2em;
  font-weight: bold;
  color: #6a39b7;
  margin: -30px 0 -10px;
}

.package-price-period {
  font-size: .4em;
  color: #777;
  font-weight: normal;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
  font-size: .9em;
}

.package-features li {
  padding: 6px 0;
  color: #555;
}

.package-features li:before {
  content: '✓ ';
  color: #27ae60;
  font-weight: bold;
  margin-right: 5px;
}

.select-button {
  background: #6a39b7;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  transition: background .2s;
}

.select-button:hover {
  background: #5568d3;
}

.select-button a {
  background: #6a39b7;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  transition: background .2s;
}

.select-button a:hover {
  background: #5568d3;       color: white;
}

.package-card.selected .select-button {
  background: #27ae60;
}

.package-card.selected .select-button:hover {
  background: #229954;
}

.package-card.popular {
  border-color: #27ae60;
}

.popular-badge {
  background: #27ae60;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: .75em;
  font-weight: bold;
  position: absolute;
  top: -13px;
  left: 50%;

}

@media (max-width: 968px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-price {
    font-size: 1.8em;
  }

  .price-total {
    font-size: 1.5em;
  }
}
