html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #181824;
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding-top: 88px;

    min-height: 100vh;
    overflow-x: hidden;
}


.page-container{
  margin-top: 10rem;

}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
  
}


a {
    color: white;
    text-decoration: none;

}
a, .btn-link {
    color: #fff;
}
a:hover{
   color: var(--scompersian-orange);
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    background: linear-gradient(0deg, rgba(215, 0, 0, 1) 0%, rgba(255, 82, 49, 1) 100%);
    color: #ffffff;
    font-family: "Inter", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: inset 0px 0.5px 0px #ffffff73, 0px 2px 4px #0000000d, 0px 1px 1px #0000001a;
}

input:hover{
    border: none;
}


h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.privacy-terms {
  
  color: #f5f5f7;
  max-width: 1200px;
  margin: 8rem auto 4rem auto;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-radius: 18px;

  font-size: 1.08rem;
  line-height: 1.7;
}

.privacy-terms h1,
.privacy-terms h2,
.privacy-terms h3 {
  color: #fff;
  margin-top: 2.2rem;
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.privacy-terms h1 {
  font-size: 2.2rem;
  margin-top: 0;
}
.privacy-terms h2 {
  font-size: 1.5rem;
  border-bottom: 1px solid #35355a;
  padding-bottom: 0.3rem;
}
.privacy-terms h3 {
  font-size: 1.15rem;
  color: #b3b3e6;
}
.privacy-terms p {
  margin-bottom: 1.1rem;
  color: #e0e0e6;
}
.privacy-terms ul,
.privacy-terms ol {
  margin-left: 2rem;
  margin-bottom: 1.2rem;
}
.privacy-terms li {
  margin-bottom: 0.6rem;
  color: #e0e0e6;
  list-style: disc inside;
}
.privacy-terms a {
  color: #7faaff;
  text-decoration: underline;
  word-break: break-all;
}
.privacy-terms a:hover {
  color: #ffb347;
}
.privacy-terms address {
  font-style: normal;
  color: #b3b3e6;
  margin-bottom: 1.2rem;
}
@media (max-width: 600px) {
  .privacy-terms {
    padding: 1.2rem 0.5rem;
    font-size: 0.98rem;
  }
  .privacy-terms h1 {
    font-size: 1.3rem;
  }
  .privacy-terms h2 {
    font-size: 1.1rem;
  }
}

.process-section {
    padding: 120px 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(24, 24, 36, 0.8) 0%, rgba(24, 24, 36, 0.95) 100%);
  }
  
  .process-section .process-steps-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative; 
  }
  
  .process-section .process-step-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    padding-left: 20px; 
  }
  
  .process-section .step-number-bg {
    position: absolute;
    left: -50px; 
    top: -20px; 
    font-family: "Inter", Helvetica; 
    font-weight: 700;
    font-size: clamp(100px, 15vw, 200px); 
    opacity: 0.05;
    background: linear-gradient(0deg, var(--scompersian-pink) 0%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 0;
    line-height: 1; 
    pointer-events: none; 
  }
  
  .process-section .step-content {
    flex: 1;
    position: relative; 
    z-index: 1;
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
  }
  
  .process-section .process-step-item:hover .step-content {
    transform: translateX(10px);
    border-color: var(--scompersian-orange);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .process-section .step-title {
    font-family: "Inter", Helvetica;
    font-weight: 500;
    font-size: 28px;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
  }
  
  .process-section .step-description {
    font-family: "Inter", Helvetica;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
  }


  @media (max-width: 992px) {
    
  
    .process-section .process-step-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
      padding-left: 0; 
    }
  
    .process-section .step-number-bg {
      position: relative; 
      left: auto;
      top: auto;
      margin-bottom: 10px;
      font-size: clamp(80px, 12vw, 150px); 
    }
  
    .process-section .step-content {
      width: 100%;
      transform: none !important; 
    }
  }
  

  @media (max-width: 768px) {

    .process-section
    {
      padding: 80px 0;
    }
 
   
  
    .process-section .process-steps-list {
      gap: 40px;
    }
  
    .process-section .step-title {
      font-size: 24px;
    }
  
    .process-section .step-description {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
   
    .process-section {
      padding: 60px 0;
    }
  
 

  
    .process-section .step-title {
      font-size: 20px;
    }
  
    .process-section .step-description {
      font-size: 15px;
    }
  }

  .shared-benefits-tite{
    padding: 0 50px;
  }

  @media (max-width: 480px) {
   
    .shared-benefits-tite {
      padding: 0 15px;
    }
  }

  @media (max-width: 768px) {
   
  
    .shared-benefits-tite  {
      padding: 0 20px;
    }
  }

  
@media (max-width: 1200px) {
  .shared-benefits-tite {
    padding: 0 30px;
  }

}



.shared-benefits-section  {
    max-width: 1280px;
   
    padding-top: 50px;
    padding-bottom: 70px;
}
.shared-benefits-section .shared-benefits-content {
    display: flex;
    align-items: center;
    gap: 80px;
}
.shared-benefits-section .shared-benefits-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    
}
.shared-benefits-section  {
    font-family: "Inter", Helvetica;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 42px);
    letter-spacing: -1.2px;
    line-height: 1.1;
    background: linear-gradient(0deg, rgba(210, 210, 217, 1) 14%, rgba(255, 255, 255, 1) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0;
}
.shared-benefits-section .shared-benefits-description {
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: clamp(16px, 2.5vw, 18px);
    letter-spacing: -0.16px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}
.shared-benefits-section .shared-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.shared-benefits-section .shared-benefit-item {
    display: flex;
    align-items: center;
    text-align: le;
    gap: 16px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    opacity: 0.9;
}
.shared-benefits-section .shared-benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5231 0%, #d70000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}
.shared-benefits-section .shared-benefits-actions {
    margin-top: 16px;
}
.shared-benefits-section .shared-benefits-image {
    flex: 1;
    max-width: 450px;
    min-width: 250px;
}
.shared-benefits-section .shared-benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

@media (max-width: 1200px) {
  
    .shared-benefits-section .shared-benefits-content {
        gap: 60px;
    }
}
@media (max-width: 992px) {
    .shared-benefits-section .shared-benefits-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .shared-benefits-section .shared-benefits-text {
        align-items: left;
    }
    .shared-benefits-section .shared-benefits-image {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .shared-benefits-section {
        padding: 80px 0;
    }

    .shared-benefits-section  {
        font-size: 28px;
    }
    .shared-benefits-section .shared-benefits-description {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    
    .shared-benefits-section  {
        font-size: 24px;
    }
    .shared-benefits-section .shared-benefits-description {
        font-size: 15px;
    }
}
  

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

@keyframes fadeInScaleSubtle {
  from {
    opacity: 0;
    transform: scale(0.99); 
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.hero-section {
  margin-top: 6rem;
  width: 100%;
  background: linear-gradient(135deg, rgba(24, 24, 36, 0.85) 0%, rgba(24, 24, 36, 1) 100%);

}

.hero-section .container,
.hero-section .dev-container,
.hero-section .hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  
}

.hero-content {
  display: flex;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  
}

.hero-text {
  flex: 1;
  display: flex;
  max-width: 500px;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  width: 100%;
}

.hero-title {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 54px);
  color: #fff;
 
  min-width: 100%;
  
  margin: 0 0 10px 0;
  letter-spacing: -1.2px;
  line-height: 1.1;
  background: linear-gradient(0deg, rgba(210, 210, 217, 1) 14%, rgba(255, 255, 255, 1) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  animation: fadeInSlideUpSubtle 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  opacity: 0; 
  animation-delay: 0.2s; 

}


.hero-description {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 1rem;
  opacity: 0.9; 
  
  margin: 0;
  line-height: 1.5;

}

.hero-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  
  margin-top: 10px;

}





.hero-actions > * {
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.hero-actions > *:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
}

.hero-image-container,
.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.25);
  
  animation: fadeInScaleSubtle 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  opacity: 0; 
  animation-delay: 0.5s;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); 
}

.hero-image:hover {
  transform: scale(1.01); 
}


@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    align-items: center;
  }

  .hero-actions {
    justify-content: start;
  }
}



.discovery-hero, .development-hero, .ux-ui-hero-section, .deployment-hero-section {
    composes: hero-section;
    padding: 100px 0 60px 0;
    background: linear-gradient(135deg, rgba(24,24,36,0.85) 0%, rgba(24,24,36,1) 100%);
}
.discovery-hero .hero-container,
.development-hero .dev-container,
.ux-ui-hero-section .container,
.deployment-hero-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .hero-image-container, .hero-image {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }
    .hero-text {
        align-items: center;
    }
}
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 30px 0;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-description {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0 20px 0;
    }
    .hero-title {
        font-size: 22px;
    }
    .hero-description {
        font-size: 13px;
    }
    .hero-section .container,
    .hero-section .dev-container,
    .hero-section .hero-container {
        padding: 0 10px;
    }
}

.progress-bar__track {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  position: relative;
  justify-content: space-between;
}

.progress-bar__divider {
  position: absolute;
  top: 50%;
  left: 18px;
  right: -18px;
  width: auto;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  z-index: 0;
}

.progress-bar__fill {
  position: absolute;
  top: 50%;
  left: 18px;
  height: 3px;
  background: var(--scompersian-orange);
  border-radius: 999px;
  z-index: 1;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}

@media (max-width: 992px) {
  .progress-bar__divider,
  .progress-bar__fill {
    left: 16px;
    right: -16px;
  }
}
@media (max-width: 768px) {
  .progress-bar__divider,
  .progress-bar__fill {
    left: 14px;
    right: -14px;
  }
}
@media (max-width: 480px) {
  .progress-bar__divider,
  .progress-bar__fill {
    left: 12px;
    right: -12px;
  }
}

.progress-bar__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 80px;
  z-index: 2;
  text-align: center;
  background: none;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.progress-bar__circle {
  z-index: 3;
  position: relative;
  background: #fff;
}


.success-message {
    background-color: green;
    color: white;
    font-family: var(--semantic-button-font-family);
    font-weight: var(--semantic-button-font-weight);
    font-size: var(--semantic-button-font-size);
    line-height: var(--semantic-button-line-height);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    letter-spacing: -0.2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInSlideUp 0.4s ease-in-out;
    display: none; 
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.span-error-message {
  color: red;
  display: block;
  font-size: 0.95em;
  margin-top: 7px;
  min-height: 1.2em;
}

.error-message {
    background-color: red ;
    color: white;
    font-family: var(--semantic-button-font-family);
    font-weight: var(--semantic-button-font-weight);
    font-size: var(--semantic-button-font-size);
    line-height: var(--semantic-button-line-height);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    letter-spacing: -0.2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInSlideUp 0.4s ease-in-out;
    display: none;
}
