* {
   margin: 0;
  padding: 0;
  box-sizing:     border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
  background-color: #fafbfc;
   line-height: 1.6;
   font-size: 16px;
}



a {
   text-decoration: none;
    color: inherit;
   transition: color 0.3s ease, transform 0.2s ease;
}

a:hover
	{
    color  :      #6c63ff;
}

img {
    max-width: 100%;

	height: auto;

  display: block;
	
}

xNav__root {
   display: block;
    position : sticky;
   top: 0;
   z-index: 1000;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.xNav__container {
 max-width: 1200px;
   margin: 0 auto;
	padding: 1rem 2rem;
	 display: flex;
    justify-content: space-between;
        align-items: center;
}

.xNav__brand {
       flex-shrink: 0; 
	
}

.xNav__logo {
    height: 45px;
	 width: auto;
         object-fit: contain;
}

.xNav__burger {
   display     :    none;
  flex-direction: column;
          cursor: pointer;
   gap: 0.35rem;
}

.xNav__burger-line {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.xNav__burger.active .xNav__burger-line:nth-child(1)   {
     transform: translateY(8px) rotate(45deg);}

.xNav__burger.active .xNav__burger-line:nth-child(2) {


    opacity: 0;
}

.xNav__burger.active .xNav__burger-line:nth-child(3)  
  {
  transform: translateY(-8px) rotate(-45deg);
}

.xNav__links {

	  display    : flex;
   list-style: none;
   gap: 2.5rem;
          align-items: center;

}

.xNav__link{
   font-weight: 500;
  color: #2c3e50;
	position: relative;
    padding-bottom: 0.25rem;
    font-size: 0.95rem;
}

.xNav__link::after {
  content: '';
    position: absolute;
    bottom   :     0;
  left : 0;
    width:     0;
   height: 2px;
  -o-transition: width 0.3s ease;
        background: #6c63ff;
  transition: width 0.3s ease;}

.xNav__link:hover::after {
  width: 100%;
}@media (max-width: 768px) {
  .xNav__burger {
    display: flex;
  }

  .xNav__links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
    padding: 1.5rem 2rem;
    display: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e6ed;
  }

  .xNav__links.active {
    display: flex;
  }

  .xNav__link {
    padding: 0.75rem 0;
    font-size: 1rem;
  }
}.xHero__section {
   max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;
   display: grid;
    grid-template-columns  : 1fr 1fr;
  gap    :     3rem;
  align-items     :   center;
   min-height: 550px;
}

.xHero__content {

	   display: flex;
   flex-direction: column;
    gap: 1.5rem;}

.xHero__title   {
    font-size: 2.8rem;
   font-weight: 700;
	 color: #1a252f;
	line-height:     1.2;
   letter-spacing: -0.5px;
}

.xHero__subtitle {
    font-size: 1.1rem;
   color: #546e7a;
   line-height: 1.7;
         max-width: 500px;
}

.xHero__cta {
          display: inline-block;
   padding: 1rem 2.2rem;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
    color :white;
   font-weight: 600;
   border-radius: 8px;
  font-size: 1rem;
 width: fit-content;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
  transition: all 0.3s ease;
}

.xHero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
  color: white;
}

.xHero__image {
  display :flex;
   justify-content  :  center;
  align-items: center;
}

.xHero__img {

    width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);


}@media (max-width: 768px) {
  .xHero__section {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
    min-height: auto;
  }

  .xHero__title {
    font-size: 2rem;
  }

  .xHero__subtitle {
    font-size: 1rem;
  }
}.xIntro__section {
    background     :  white;

	  padding     :      4rem 2rem;

	   border-top: 1px solid #e0e6ed;

	  border-bottom    :1px solid #e0e6ed;
}  

.xIntro__wrapper {
      margin: 0 auto;
		max-width: 900px;
}

.xIntro__heading     {
                    font-size: 2.2rem;
   font-weight: 700;
    color: #1a252f;
   margin-bottom: 1.5rem;


}

.xIntro__text {
   font-size: 1.05rem; 
    color: #546e7a; 
    line-height: 1.8; 
    margin-bottom: 1.2rem; 
    text-align: justify;
}

.xServices__section {
    max-width  :  1200px;
   margin  :        0 auto;
    padding: 4rem 2rem;
}

.xServices__title {

	    font-size: 2.5rem; 
	  font-weight: 700; 
	  text-align  :      center; 
	    color: #1a252f; 
	   margin-bottom: 3rem;
     }

.xServices__grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
     }

.xServices__card {
		background: white;
    border-radius: 10px;
   overflow     : hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
               display: flex;
  flex-direction: column;
}

.xServices__card:hover		{
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(108, 99, 255, 0.15);
}

.xServices__image {
   width: 100%;
	 height: 220px;
	object-fit: cover;
   border-bottom: 3px solid #f0f2f5;
}

.xServices__card-title {
         font-size: 1.25rem;
  font-weight: 600;
  color: #1a252f;
  padding: 1.2rem 1.2rem 0.5rem;
}

.xServices__card-text {
     font-size: 0.95rem;
       color:    #546e7a;
 padding    :      0.5rem 1.2rem;
   line-height: 1.6;
  flex-grow: 1;
}

.xServices__badge {
    display: inline-block;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(90, 82, 213, 0.1) 100%);
    color: #6c63ff;
    font-size: 0.85rem;
  font-weight: 600;
	padding: 0.4rem 0.9rem;
  border-radius :     20px;
   margin: 0 1.2rem 1.2rem;
  width: fit-content;
        border: 1px solid #6c63ff;
	}

.xCta__section {
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
   padding: 4rem 2rem;
   text-align : center;
      color: white;
}

.xCta__inner {
   max-width: 700px;
	margin: 0 auto;
     display: flex;
    flex-direction     :   column;
                    gap   :       1.5rem; 
	
}

.xCta__title  {
  font-size     :     2.2rem; 
	    font-weight: 700; 
		 line-height: 1.3;
}

.xCta__description {

  line-height: 1.7;
  opacity: 0.95;
    font-size: 1.1rem;


}

.xCta__button {
   display  :       inline-block;
    padding: 1rem 2.5rem;
   background: white;
  color: #6c63ff;
  font-weight: 700;
   border-radius: 8px;
  font-size: 1rem;
  width: fit-content;
   margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   transition   :     all 0.3s ease;
}

.xCta__button:hover {
  transform: scale(1.05);
  color  : #6c63ff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.xContact__section {
    max-width: 800px;

	        margin: 0 auto;

	    padding: 4rem 2rem;

	  background: white;

	    border-radius: 12px;

	  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.xContact__title {
  font-size: 2rem;
   font-weight: 700;
    color: #1a252f;
  text-align: center;
    margin-bottom: 0.5rem; 
	
}

.xContact__subtitle {
  font-size: 1rem;
       color: #546e7a;
       text-align: center;
     margin-bottom:     2rem;
}

.xContact__form {
	display: flex;

   flex-direction    :       column;

  gap: 1.5rem;
}

.xContact__field {
	display: flex;

  flex-direction: column;

  gap: 0.5rem;


}

.xContact__label {
   font-weight: 600;
    color: #2c3e50;
  font-size: 0.95rem;
}

.xContact__input,
.xContact__textarea {

      padding: 0.9rem 1rem;
	 border: 2px solid #e0e6ed;
     border-radius: 6px;
  font-size: 0.95rem;
                    color: #2c3e50;
    font-family: inherit;
          transition: all 0.3s ease;
   background: #fafbfc;


}

.xContact__input:focus,
.xContact__textarea:focus {
    outline: none;
   border-color: #6c63ff;
  background: white;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.xContact__submit {
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
   color: white;
    font-weight: 700;
 border: none;
    border-radius: 6px;
   font-size: 1rem;
   cursor : pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.xContact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}



.xFooter__root {
	    background   :  #1a252f;
    color   :       #ecf0f1;
    padding: 3rem 2rem 1rem;
    margin-top     :  3rem;
     }

.xFooter__wrapper {
  max-width: 1200px;
   margin    : 0 auto;
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
   margin-bottom: 2rem;
  border-bottom: 1px solid rgba(236, 240, 241, 0.1);
  padding-bottom: 2rem;
}

.xFooter__column {

	    display     :  flex;
       flex-direction: column;
    gap: 1rem;
}

.xFooter__logo     {
   height: 40px;
	width: auto;
    object-fit: contain;
}

.xFooter__title {
    font-size: 1rem;
    font-weight: 700;
  color: white;
    margin-bottom: 0.5rem;
}

.xFooter__links		{


   list-style: none;
    display: flex;
   flex-direction: column;
  gap: 0.6rem;
     } 

.xFooter__link

{
    font-size   :    0.9rem;
  color: #bdc3c7;
  transition: color 0.3s ease;
}

.xFooter__link:hover {
    color: #6c63ff;
}

.xFooter__text {
    font-size: 0.9rem;
  color: #bdc3c7;
    line-height :   1.6;
}

.xFooter__bottom {
   max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(236, 240, 241, 0.1);
}

.xFooter__copyright {
  font-size:  0.85rem;
  color: #7f8c8d;
}@media (max-width: 768px) {
  .xIntro__section {
    padding: 2.5rem 1.5rem;
  }

  .xIntro__heading {
    font-size: 1.6rem;
  }

  .xServices__section {
    padding: 2.5rem 1.5rem;
  }

  .xServices__title {
    font-size: 1.8rem;
  }

  .xCta__section {
    padding: 2.5rem 1.5rem;
  }

  .xCta__title {
    font-size: 1.6rem;
  }

  .xContact__section {
    padding: 2rem 1.5rem;
  }

  .xFooter__wrapper {
    grid-template-columns: 1fr;
  }
}.policySection {
   padding: 80px 2rem;
	 background: #f8f9fa;
}

.policyContainer 
 {
  max-width: 800px;
  margin     :     0 auto;
    text-align: left;
}

.policyContainer h2 {
    font-size :     2.5rem;
  color: #2c3e50;
         margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer p    {
  color: #7f8c8d;
    margin-bottom: 1.5rem;
  line-height: 1.7;
   font-size:    1.1rem;
}@media (max-width: 768px) {
  .policyContainer h2 {
    font-size: 2rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}.xServices__hero {

	  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
    padding: 5rem 2rem;
    text-align     :        center;
   color: white;
    min-height: 300px;
   display: flex;
	 align-items: center;
    justify-content: center;
	}

.xServices__hero-content {
  max-width: 800px;
}

.xServices__hero-title  {
	font-size: 3rem;
  font-weight: 700;
      margin-bottom: 1rem;
	letter-spacing: -0.5px;



}

.xServices__hero-subtitle {
	font-size: 1.3rem;
   opacity: 0.95;
  line-height    :   1.6;
}

.xServices__detailed {
   	max-width: 1200px;
  margin:        0 auto;
   padding: 4rem 2rem;
	}

.xServices__detailed-wrapper {
   display: flex;
	 flex-direction: column;
     gap: 4rem;
}

.xServices__detailed-item {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap  :       3rem;
    align-items   :       center;
	 background: white;
               padding: 2.5rem;
   border-radius    :    12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:       all 0.3s ease;
}

.xServices__detailed-item:hover
	{
     box-shadow: 0 8px 25px rgba(108, 99, 255, 0.12);

}

.xServices__detailed-item--alt {
    grid-template-columns: 1fr 1fr;

    direction: rtl;
}

.xServices__detailed-item--alt > * {
    direction: ltr;
}

.xServices__detailed-image {
   overflow: hidden;
  border-radius:       10px;
}

.xServices__item-img {
  object-fit: cover;
  width: 100%;
   height: 350px;
   transition: transform 0.3s ease;
}

.xServices__detailed-item:hover .xServices__item-img {
  transform: scale(1.05);
}  

.xServices__item-title {
    font-size: 1.8rem;
          font-weight: 700;
  color: #1a252f;
          margin-bottom: 1rem;
}

.xServices__item-description {
    font-size: 1rem;
    color: #546e7a;
   line-height: 1.8;
  margin-bottom: 1.5rem;
}

.xServices__benefits-list {
  margin-bottom  : 1.5rem;
	 list-style: none;
}

.xServices__benefits-list li {

  position: relative;
  padding    :     0.6rem 0 0.6rem 2rem;
   font-size: 0.95rem;
                    line-height: 1.6;
    color: #546e7a;

}

.xServices__benefits-list li::before {
  content: '';
    position: absolute;
    left: 0;
        top : 1rem;
	 width: 8px;
  height: 8px;
  background: #6c63ff;
   border-radius: 50%;
}

.xServices__price-tag {

      display: inline-block;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.15) 0%, rgba(90, 82, 213, 0.15) 100%);
  color: #6c63ff;
   padding:       0.7rem 1.5rem;
  border-radius: 25px;
    font-weight: 700;
 border: 2px solid #6c63ff;
   font-size: 1.1rem;
	}
	/* Legacy code */

/* Colors and backgrounds */

.xServices__comparison   {
  background: white;
    padding: 4rem 2rem;
	border-top: 1px solid #e0e6ed;
		 border-bottom: 1px solid #e0e6ed;


}

.xServices__comparison-wrapper
{


  max-width: 1200px;
        margin: 0 auto;}

.xServices__comparison-title {
  font-size: 2.2rem;
    font-weight: 700;
   text-align    :      center;
   color: #1a252f;
    margin-bottom:       2.5rem;
}

.xServices__table-container {
	overflow-x: auto;
}

.xServices__comparison-table {
	width: 100%;
   border-collapse: collapse;
    background: white;
    border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.xServices__comparison-table thead	{
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  color: white;


}  

.xServices__comparison-table th {
  padding    :1.2rem;
    text-align   :    left;
                    font-weight: 600;
   font-size    :     0.95rem;
}

.xServices__comparison-table td	{
   padding :     1rem 1.2rem;
	 border-bottom: 1px solid #e0e6ed;
  font-size: 0.9rem;
  color: #546e7a;
}

.xServices__comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.xServices__comparison-table tbody tr:hover {
    background  :        #f8f9fa;
}
/* Vendor-specific */

.xServices__packages {
   max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.xServices__packages-title {
   font-size: 2.2rem;
   font-weight: 700;
    text-align: center;
   color: #1a252f;
    margin-bottom: 3rem;
}

.xServices__packages-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.xServices__package-card {
         background     :     white;
  border: 2px solid #e0e6ed;
 border-radius: 12px;
    padding: 2rem;
    text-align: center;
	 transition :        all 0.3s ease;
          position   :     relative;
    display: flex;
  flex-direction: column; 
	
}
	/* Development only */


.xServices__package-card:hover {
  border-color :    #6c63ff;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.15);
  transform: translateY(-8px);

}

/* Auto-generated CSS */

.xServices__package-card--featured {
   border-color  :     #6c63ff;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.15);
  transform: scale(1.02);
}



.xServices__package-badge {

    position:       absolute;
    top: -12px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
        color: white;
        padding    :  0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
   font-weight     :      700;
  letter-spacing: 1px;
     }

.xServices__package-name {

	   margin-top:  0.5rem;
      margin-bottom: 0.5rem;
  color: #1a252f;
    font-weight: 700;
  font-size: 1.5rem;
     }

.xServices__package-desc{
     font-size  :      0.9rem;
  color: #546e7a;
          margin-bottom: 1.5rem;
}
/* TODO: optimize for mobile */

.xServices__package-items {
			list-style: none;
    text-align: left;
               margin-bottom: 2rem;
   flex-grow: 1;
}

.xServices__package-items li {
	padding: 0.7rem 0;
    color: #546e7a;
   font-size: 0.9rem;
   border-bottom: 1px solid #f0f2f5;
   line-height: 1.5;
}

.xServices__package-items li:last-child		{
  border-bottom: none; 
	
}

.xServices__package-price {
   font-size: 1.8rem;
  font-weight   :     700;
	color     :      #6c63ff;
    margin-bottom: 1.5rem; 

}

.xServices__faq {


		 background: #f8f9fa;
  padding :  4rem 2rem;
}

.xServices__faq-wrapper {
  max-width    :       1200px;
                    margin: 0 auto;
}

.xServices__faq-title {


   font-size :  2.2rem;
  font-weight: 700;
    text-align: center;
   color: #1a252f;
          margin-bottom: 3rem;
}

.xServices__faq-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap: 2rem;
}

.xServices__faq-item {
   background: white;
    padding: 1.5rem;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition    :all 0.3s ease; 
}

.xServices__faq-item:hover {
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.1);
  transform: translateY(-4px);
	
}
/* Third-party styles */

/* Animation and transitions */

.xServices__faq-question {
    font-size: 1.05rem;
      font-weight: 600;
  color   :#1a252f;
  margin-bottom: 0.8rem;
  line-height    :   1.4;
}

.xServices__faq-answer
	{
  font-size: 0.9rem;
          color: #546e7a;
  line-height: 1.7;
	
}

.xServices__cta {
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
	padding    :   4rem 2rem;
  text-align: center;
    color: white;
}

.xServices__cta-inner     {
  max-width: 700px;
   margin: 0 auto;
}

.xServices__cta-title {
   font-size: 2.5rem;
    font-weight: 700;
   margin-bottom: 1rem;
        line-height: 1.2;
}

/* Responsive design */
.xServices__cta-text {
               font-size: 1.1rem;
	opacity: 0.95;
	margin-bottom: 2rem;
    line-height: 1.7;
}

.xServices__cta-button 
 {
    display: inline-block;
    padding    :1rem 2.5rem;
  background: white;
			color     :        #6c63ff;
    font-weight: 700;
  border-radius: 8px;
   font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   transition: all 0.3s ease;
}

.xServices__cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
 color: #6c63ff; 
	
}  

.xThankYou__section {
      min-height: 600px;
   display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(90, 82, 213, 0.05) 100%);
	}

/* Hack for old browsers */

.xThankYou__container {
	  max-width: 700px;
   width: 100%;
   background    : white;
    border-radius: 16px;
    padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;}

.xThankYou__icon-wrapper {


      margin-bottom: 2rem;
     }

.xThankYou__checkmark {
	 width: 80px;
   height: 80px;
    margin     :      0 auto;
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
  border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
    position: relative;
}

.xThankYou__check-line {
  -moz-border-radius: 3px;
          position: absolute;
          -webkit-border-radius    :  3px;
   background: white;
   border-radius: 3px;
}



.xThankYou__check-line--1 {
   width: 12px;
    height: 28px;
  left: 22px;
  top: 28px;
  transform: rotate(-45deg);
}


.xThankYou__check-line--2 {
      width: 24px;
                    height: 12px;
   left: 36px;
    top: 40px;
  transform: rotate(45deg);
     }

.xThankYou__title {
  font-size: 2.5rem;
    font-weight: 700;
   color: #1a252f;
  margin-bottom: 0.5rem;
}
/* Legacy code */


.xThankYou__subtitle {
	font-size: 1.1rem;
      color   :  #546e7a;
       margin-bottom: 2rem;
}

.xThankYou__details {
    background   :     #f8f9fa;
   border-left  :    4px solid #6c63ff;
  padding: 2rem;
       border-radius: 8px;
	margin: 2rem 0;
    text-align: left;
}

.xThankYou__details-title  
  {
   font-size : 1.1rem;
  font-weight: 700;
  color: #1a252f;
   margin-bottom  : 1.5rem;
  text-align: center; 

}

/* Legacy code */

.xThankYou__detail-item
	{
      display  :   flex;
  justify-content: space-between;
    align-items: flex-start;
  padding: 0.8rem 0;
   border-bottom: 1px solid #e0e6ed;
    gap: 1rem;
}

.xThankYou__detail-item:last-child		{

	  border-bottom: none;

} 

.xThankYou__detail-label {
    font-weight: 700;
   color: #2c3e50;
    min-width: 140px;
}

.xThankYou__detail-value {
   color: #546e7a;
	text-align: right;
  flex-grow: 1;
}

.xThankYou__detail-message {
  color   :        #546e7a;
    line-height: 1.6;
    text-align: right;
    margin-top: 0.5rem;
}

.xThankYou__content {
   margin: 2rem 0;
}

.xThankYou__text {
  font-size   :  1rem;
    color: #546e7a;
  line-height: 1.8;
   margin-bottom: 1rem;
  text-align: center;
}

.xThankYou__next-steps {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(90, 82, 213, 0.1) 100%);
  border-radius: 10px;
    padding    :       2rem;
   margin: 2rem 0;
    text-align: left;
     }

.xThankYou__next-title {
  font-size: 1.1rem;
    font-weight: 700;
  color : #1a252f;
  margin-bottom: 1.2rem;
}
/* Performance critical */
.xThankYou__steps-list {
  list-style    :        none;
  padding   : 0;
}



.xThankYou__steps-list li {

	    padding: 0.8rem 0 0.8rem 2rem;
   color: #546e7a;
    position :     relative;
         line-height: 1.6;
	}


.xThankYou__steps-list li::before	{
	  content: '';
	position: absolute;
                    left: 0;
        top: 0.75rem;
    width   :    20px;
   height: 20px;
         background: white;
   border     :2px solid #6c63ff;
   border-radius: 50%;
   display: flex;
    align-items: center;
                    justify-content: center;

}
	/* Build system output */



/* Production ready */


.xThankYou__steps-list li:nth-child(1)::before {
  content: '1'; 
   color: #6c63ff; 
         font-weight: 700; 
	 text-align: center; 
	line-height: 16px;
}

.xThankYou__steps-list li:nth-child(2)::before {
  content: '2';
    color: #6c63ff;
   font-weight: 700;
   text-align: center;
  line-height     :      16px;
}

.xThankYou__steps-list li:nth-child(3)::before {


  content: '3';
   color: #6c63ff;
   font-weight: 700;
    text-align: center;
    line-height: 16px;
}

.xThankYou__steps-list li:nth-child(4)::before {

  content: '4'; 
  color: #6c63ff; 
      font-weight: 700; 
    text-align  :  center; 
   line-height: 16px;
	}

.xThankYou__actions {
  display: flex;
   gap: 1rem;
   margin-top    :2rem;
   flex-wrap: wrap;
  justify-content:       center;
}

.xThankYou__action-button {
	 padding: 0.9rem 2rem;
    border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
   display: inline-block;
	}


.xThankYou__action-button--primary {
  background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
   color: white;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.xThankYou__action-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
    color :       white;
}
	/* Layout styles */
.xThankYou__action-button--secondary {
   background: transparent;
   color: #6c63ff;
    border: 2px solid #6c63ff;
}
/* Temporary fix */


	/* Layout styles */



/* Build system output */

.xThankYou__action-button--secondary:hover {
    background: #f0f2f5;
}
@media (max-width: 768px) {
  .xServices__hero-title {
    font-size: 2rem;
  }

  .xServices__hero-subtitle {
    font-size: 1rem;
  }

  .xServices__detailed-item,
  .xServices__detailed-item--alt {
    grid-template-columns: 1fr;
    direction: ltr;
    padding: 1.5rem;
  }

  .xServices__detailed-item--alt > * {
    direction: ltr;
  }

  .xServices__item-img {
    height: 250px;
  }

  .xServices__item-title {
    font-size: 1.4rem;
  }

  .xServices__comparison-title {
    font-size: 1.6rem;
  }

  .xServices__packages-grid {
    grid-template-columns: 1fr;
  }

  .xServices__package-card--featured {
    transform: scale(1);
  }

  .xServices__faq-grid {
    grid-template-columns: 1fr;
  }

  .xServices__cta-title {
    font-size: 1.8rem;
  }

  .xThankYou__container {
    padding: 2rem;
  }

  .xThankYou__title {
    font-size: 2rem;
  }

  .xThankYou__checkmark {
    width: 60px;
    height: 60px;
  }

  .xThankYou__detail-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .xThankYou__detail-value {
    text-align: left;
  }

  .xThankYou__actions {
    flex-direction: column;
  }

  .xThankYou__action-button {
    width: 100%;
    text-align: center;
  }
}