/*!*****************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Blocks/AppScreenshots/AppScreenshots.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************/
.app-screenshots-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

/* Background Image */
.app-screenshots-background {
  position: absolute;
  top: 20%;
  right: -25%;
  width: 110%;
  height: 120%;
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.4);
  /* filter: contrast(100%) saturate(120%) sepia(0%) hue-rotate(-10deg) brightness(90%); */
  filter: contrast(110%);
  /* opacity: 0.5; */
}

/* First gradient layer - blue gradient with 50% overall opacity */
.app-screenshots-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    150deg,
    rgba(22, 129, 255, 0) 0%,
    rgba(0, 38, 255, 0.6) 30%,
    rgba(22, 129, 255, 0) 60%
  );
  opacity: 0.5;
  z-index: 2;
}

/* Second gradient layer - dark blue gradient with 87% overall opacity */
.app-screenshots-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    175deg,
    rgba(3, 8, 24, 1) 15%,
    rgba(0, 49, 214, 0.5) 30%,
    rgba(6, 13, 38, 1) 50%
  );
  opacity: 0.87;
  z-index: 1;
}

.app-screenshots-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.app-screenshots-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.app-screenshots-title {
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  max-width: 850px;
  margin: 0 auto 20px auto;
  line-height: 1;
}

.app-screenshots-subtitle {
  font-size: 48px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1;
}

/* Slider Styles */
.app-screenshots-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.app-screenshots-slider-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: 20px;
  /* background: rgba(255, 255, 255, 0.02); */
  background: linear-gradient(to bottom right, rgba(22, 129, 255, 0.45), rgba(22, 129, 255, 0.06));
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-width: 1px;
  border-style: solid;
  border-color: #1681ffbf;
}

.app-screenshot-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.app-screenshot-slide.active {
  opacity: 1;
  z-index: 1;
}

.app-screenshot-image {
  max-width: 100%;
  max-height: 520px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.app-screenshot-caption {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-style: italic;
}

/* Navigation Arrows */
.app-screenshot-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #ffffff;
}

.app-screenshot-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.app-screenshot-arrow-left {
  left: -20px;
}

.app-screenshot-arrow-right {
  right: -20px;
}

.app-screenshot-arrow .material-symbols-outlined {
  font-size: 32px;
}

/* Dots Navigation */
.app-screenshot-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.app-screenshot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.app-screenshot-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.app-screenshot-dot.active {
  background: #ffffff;
  width: 32px;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .app-screenshots-section {
    padding: 60px 15px;
  }

  .app-screenshots-title {
    font-size: 36px;
  }

  .app-screenshots-subtitle {
    font-size: 18px;
  }

  .app-screenshots-slider {
    padding: 0 40px;
  }

  .app-screenshots-slider-wrapper {
    height: 500px;
  }

  .app-screenshot-image {
    max-height: 420px;
  }

  .app-screenshot-arrow {
    width: 40px;
    height: 40px;
  }

  .app-screenshot-arrow .material-symbols-outlined {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .app-screenshots-section {
    padding: 40px 10px;
  }

  .app-screenshots-title {
    font-size: 28px;
  }

  .app-screenshots-subtitle {
    font-size: 16px;
  }

  .app-screenshots-slider {
    padding: 0 30px;
  }

  .app-screenshots-slider-wrapper {
    height: 400px;
  }

  .app-screenshot-image {
    max-height: 340px;
  }

  .app-screenshot-arrow {
    width: 36px;
    height: 36px;
  }

  .app-screenshot-arrow .material-symbols-outlined {
    font-size: 20px;
  }

  .app-screenshot-dot {
    width: 10px;
    height: 10px;
  }

  .app-screenshot-dot.active {
    width: 24px;
  }
}

/* Integrations Section within AppScreenshots */
.app-screenshots-integrations {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.app-screenshots-integrations-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.app-screenshots-integrations-title {
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  max-width: 850px;
  margin: 0 auto 20px auto;
  line-height: 1;
}

.app-screenshots-integrations-subtitle {
  font-size: 48px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1;
}

.app-screenshots-integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

/* Integration Card Styles - Horizontal Layout with Blur */
.integration-card {
  position: relative;
  width: 340px;
  min-height: 70px;
  padding: 15px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}

.integration-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.integration-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.integration-icon-wrapper {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  transition: all 0.3s ease;
}

.integration-card:hover .integration-icon-wrapper {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.integration-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.integration-text-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.integration-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.integration-name {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.integration-description {
  display: none;
}

.integration-link-button {
  display: none;
}

.integration-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.integration-card:hover .integration-card-glow {
  opacity: 1;
}

/* Responsive for Integrations within AppScreenshots */
@media (max-width: 768px) {
  .app-screenshots-integrations {
    margin-top: 80px;
    padding-top: 40px;
  }

  .app-screenshots-integrations-title {
    font-size: 36px;
  }

  .app-screenshots-integrations-subtitle {
    font-size: 18px;
  }

  .integration-card {
    width: 100%;
    max-width: 340px;
  }

  .integration-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .integration-name {
    font-size: 16px;
  }

  .integration-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .app-screenshots-integrations {
    margin-top: 60px;
    padding-top: 30px;
  }

  .app-screenshots-integrations-title {
    font-size: 28px;
  }

  .app-screenshots-integrations-subtitle {
    font-size: 16px;
  }

  .integration-card {
    width: 100%;
    padding: 12px 15px;
    min-height: 60px;
  }

  .integration-icon-wrapper {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .integration-name {
    font-size: 15px;
  }

  .integration-label {
    font-size: 9px;
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Blocks/AuthForm/AuthForm.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************/
/* Auth Form Section */
.auth-form-section {
  padding: 120px 0;
  width: 100%;
}

.auth-form-section-light {
  background-color: #f8f9fa;
}

.auth-form-section-white {
  background-color: #f9f9f9;
}

.auth-form-section-dark {
  background-color: #0b1029;
}

.auth-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Auth Form Wrapper */
.auth-form-wrapper {
  flex: 1 1;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 16px;
  box-shadow: 0 60px 70px 0 rgba(0, 15, 53, 0.149);
  padding: 24px;
  box-sizing: border-box;
}

.auth-form-wrapper.white {
  background: #ffffff;
  box-shadow: 0 60px 70px 0 rgba(0, 15, 53, 0.149);
}

.auth-form-wrapper.light {
  background: linear-gradient(100deg, hsla(0, 0%, 100%, 0.1) 47.8%, hsla(0, 0%, 100%, 0) 100.09%);
  border: 1px solid #fff;
  box-shadow: 0 7px 32px 0 rgba(11, 16, 41, 0.05);
}

.auth-form-title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 35px;
  margin-top: 0;
  color: #0b1029;
  text-align: center;
}

.auth-form-subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #5a6c8f;
  text-align: center;
}

/* Social Auth Buttons */
.social-auth-container {
  margin-bottom: 24px;
}

.social-auth-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #0b1029;
  background-color: #ffffff;
  border: 1px solid #d1d9e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-auth-button:hover {
  background-color: #f8f9fa;
  border-color: #3758f9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d1d9e6;
  z-index: 0;
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  background-color: #ffffff;
  color: #5a6c8f;
  font-size: 14px;
  z-index: 1;
}

/* Auth Form Fields */
.auth-contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 28px;
  gap: 28px;
  grid-column-gap: 20px;
  column-gap: 20px;
}

.auth-form-field {
  display: flex;
  flex-direction: column;
}

/* Full width fields */
.auth-form-field.full-width,
.auth-checkboxes,
.auth-forgot-password {
  grid-column: 1 / -1;
}

.auth-form-label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #0b102984;
}

.auth-input-wrapper {
  position: relative;
}

/* Password Field with Toggle */
.password-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field-wrapper .hs-input {
  padding-right: 45px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a6c8f;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: #3758f9;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

/* Checkboxes */
.auth-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.auth-checkbox-field {
  display: flex;
  flex-direction: column;
}

.auth-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: #0b1029c6;
}

.auth-checkbox-input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #3758f9;
}

.auth-checkbox-text {
  flex: 1 1;
}

.auth-checkbox-link {
  color: #3758f9;
  text-decoration: none;
  font-weight: 500;
}

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

/* Forgot Password */
.auth-forgot-password {
  text-align: right;
  margin-top: -12px;
  margin-bottom: 8px;
}

.forgot-password-link {
  font-size: 14px;
  color: #3758f9;
  text-decoration: none;
  font-weight: 500;
}

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

/* Alternate Action */
.auth-alternate-action {
  font-size: 14px;
  line-height: 1.5;
  color: #0b10298a;
  margin-top: 24px;
  text-align: center;
}

.auth-alternate-action a {
  color: #3758f9;
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
}

.auth-alternate-action a:hover {
  text-decoration: underline;
}

/* Form Input Styles */
.hs-form-required {
  color: #e74c3c;
  margin-left: 4px;
}

.hs-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #0b1029;
  background-color: #0b10290b;
  border: 1px solid #d1d9e6;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.hs-input:focus {
  border-color: #3758f9;
  box-shadow: 0 0 0 3px rgba(55, 88, 249, 0.1);
}

.hs-input.error {
  border-color: #e74c3c;
}

.hs-input::placeholder {
  color: #757575;
}

textarea.hs-input {
  resize: vertical;
  min-height: 100px;
}

select.hs-input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230b1029' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.error-message {
  display: block;
  font-size: 13px;
  color: #e74c3c;
  margin-top: 4px;
}

/* Submit Button */
.hs_submit {
  margin-top: 8px;
  grid-column: 1 / -1;
}

.actions {
  display: flex;
}

.hs-button {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.hs-button.primary {
  background-color: #1681ff;
  color: #ffffff;
}

.hs-button.primary:hover {
  background-color: #2845e8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(55, 88, 249, 0.3);
}

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

.hs-button.primary.disabled,
.hs-button.primary:disabled {
  background-color: #c5d0de;
  color: #8996a8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
  pointer-events: none;
}

.hs-button.primary.disabled:hover,
.hs-button.primary:disabled:hover {
  background-color: #c5d0de;
  transform: none;
  box-shadow: none;
}

.hs-button.large {
  padding: 16px 40px;
  font-size: 17px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .auth-form-wrapper {
    padding: clamp(32px, 2.5vw, 64px);
    border-radius: clamp(16px, 1.25vw, 32px);
  }

  .auth-divider span {
    background-color: inherit;
  }

  /* Keep 2 columns on tablets and desktop */
  .auth-contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .auth-form-wrapper {
    padding: 35px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .testimonial-contact-form {
    flex-direction: column;
  }

  .testimonial-contact-form.reverse-on-mobile {
    flex-direction: column-reverse;
  }

  .image-wrapper {
    width: 100%;
    min-width: auto;
  }

  .image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .auth-form-section {
    padding: 80px 0;
  }

  .auth-form-container {
    padding: 0 16px;
  }

  .auth-form-title {
    font-size: 24px;
  }

  /* Hide image on mobile */
  .image-wrapper {
    display: none;
  }

  .image {
    min-height: 350px;
  }

  .image-text-container {
    padding: 24px;
  }

  .inner-image_text span {
    font-size: 16px;
  }

  .auth-form-wrapper {
    padding: 24px;
  }

  .hs-button.large {
    padding: 14px 32px;
    font-size: 16px;
  }

  /* Single column form on mobile */
  .auth-contact-form {
    grid-template-columns: 1fr;
  }

  .auth-forgot-password {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .auth-form-section {
    padding: 60px 0;
  }

  .auth-form-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .auth-form-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .auth-contact-form {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .hs-input {
    padding: 10px 14px;
    font-size: 14px;
  }

  /* Hide image on mobile */
  .image-wrapper {
    display: none;
  }

  .image {
    min-height: 300px;
  }

  .image-text-container {
    padding: 20px;
  }

  .quote-icon {
    width: 32px;
    height: 32px;
  }

  .inner-image_text span {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .person-name {
    font-size: 14px;
  }

  .person-detail {
    font-size: 12px;
  }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Blocks/Form/Form.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
/* Form Section */
.form-section {
  padding: 120px 0;
  width: 100%;
}

.form-section-light {
  background-color: #f8f9fa;
}

.form-section-white {
  background-color: #f9f9f9;
}

.form-section-dark {
  background-color: #0b1029;
}

.form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Testimonial Contact Form Layout */
.testimonial-contact-form {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.testimonial-contact-form.reverse-on-mobile {
  flex-direction: row;
}

/* Image Wrapper */
.image-wrapper {
  width: 31.8%;
  min-width: 300px;
  flex-shrink: 0;
}

.image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}

.inner-image_backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.image-text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
}

.inner-image {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.inner-image_text {
  color: #ffffff;
}

.inner-image_text span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

.person-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.person-detail {
  font-size: 14px;
  opacity: 0.9;
}

/* Form Wrapper */
.form-wrapper {
  flex: 1 1;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 16px;
  box-shadow: 0 60px 70px 0 rgba(0, 15, 53, 0.149);
  padding: 24px;
  box-sizing: border-box;
}

.form-wrapper.white {
  background: #ffffff;
  box-shadow: 0 60px 70px 0 rgba(0, 15, 53, 0.149);
}

.form-wrapper.light {
  background: linear-gradient(100deg, hsla(0, 0%, 100%, 0.1) 47.8%, hsla(0, 0%, 100%, 0) 100.09%);
  border: 1px solid #fff;
  box-shadow: 0 7px 32px 0 rgba(11, 16, 41, 0.05);
}

.form-title {
  font-size: 28px;
  /* font-weight: 700; */
  line-height: 1.3;
  margin-bottom: 35px;
  margin-top: 0;
  color: #0b1029;
}

.form-subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #5a6c8f;
}

/* Form Fields */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 28px;
  gap: 28px;
  grid-column-gap: 20px;
  column-gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

/* Full width fields (textarea, select with many options, submit button) */
.form-field.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #0b102984;
}

.hs-form-required {
  color: #e74c3c;
  margin-left: 4px;
}

.input {
  position: relative;
}

.hs-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #0b1029;
  background-color: #0b10290b;
  border: 1px solid #d1d9e6;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.hs-input:focus {
  border-color: #3758f9;
  box-shadow: 0 0 0 3px rgba(55, 88, 249, 0.1);
}

.hs-input.error {
  border-color: #e74c3c;
}

.hs-input::placeholder {
  color: #757575;
}

textarea.hs-input {
  resize: vertical;
  min-height: 100px;
}

select.hs-input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230b1029' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.error-message {
  display: block;
  font-size: 13px;
  color: #e74c3c;
  margin-top: 4px;
}

/* Submit Button */
.hs_submit {
  margin-top: 8px;
  grid-column: 1 / -1;
}

.actions {
  display: flex;
}

.hs-button {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.hs-button.primary {
  background-color: #1681ff;
  color: #ffffff;
}

.hs-button.primary:hover {
  background-color: #2845e8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(55, 88, 249, 0.3);
}

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

.hs-button.large {
  padding: 16px 40px;
  font-size: 17px;
}

/* Form Terms */
.form-terms {
  font-size: 13px;
  line-height: 1.3;
  color: #0b10298a;
  margin-top: 20px;
  text-align: left;
}

.form-terms a {
  color: #0b1029c6;
  text-decoration: none;
  font-weight: 500;
}

.form-terms a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 769px) {
  .form-wrapper {
    padding: clamp(32px, 2.5vw, 64px);
    border-radius: clamp(16px, 1.25vw, 32px);
  }

  /* Keep 2 columns on tablets and desktop */
  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .form-wrapper {
    padding: 35px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .testimonial-contact-form {
    flex-direction: column;
  }

  .testimonial-contact-form.reverse-on-mobile {
    flex-direction: column-reverse;
  }

  .image-wrapper {
    width: 100%;
    min-width: auto;
  }

  .image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .form-section {
    padding: 80px 0;
  }

  .form-container {
    padding: 0 16px;
  }

  .form-title {
    font-size: 24px;
  }

  /* Hide image on mobile */
  .image-wrapper {
    display: none;
  }

  .image {
    min-height: 350px;
  }

  .image-text-container {
    padding: 24px;
  }

  .inner-image_text span {
    font-size: 16px;
  }

  .form-wrapper {
    padding: 24px;
  }

  .hs-button.large {
    padding: 14px 32px;
    font-size: 16px;
  }

  /* Single column form on mobile */
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .form-section {
    padding: 60px 0;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .form-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-form {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .hs-input {
    padding: 10px 14px;
    font-size: 14px;
  }

  /* Hide image on mobile */
  .image-wrapper {
    display: none;
  }

  .image {
    min-height: 300px;
  }

  .image-text-container {
    padding: 20px;
  }

  .quote-icon {
    width: 32px;
    height: 32px;
  }

  .inner-image_text span {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .person-name {
    font-size: 14px;
  }

  .person-detail {
    font-size: 12px;
  }
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Blocks/Integrations/Integrations.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************/
.integrations-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

/* Background Image */
.integrations-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.1);
}

/* First gradient layer - blue gradient with 50% overall opacity */
.integrations-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    130deg,
    rgba(22, 129, 255, 0) 0%,
    rgba(0, 38, 255, 0.6) 50%,
    rgba(22, 129, 255, 0) 100%
  );
  opacity: 0.5;
  z-index: 1;
}

/* Second gradient layer - dark blue gradient with 87% overall opacity */
.integrations-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    130deg,
    rgba(3, 8, 24, 1) 0%,
    rgba(0, 49, 214, 0.5) 50%,
    rgba(6, 13, 38, 1) 100%
  );
  opacity: 0.87;
  z-index: 2;
}

.integrations-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.integrations-header {
  text-align: center;
  margin-bottom: 60px;
}

.integrations-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integrations-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* Grid Styles */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

/* Integration Card Styles - Horizontal Layout with Blur */
.integration-card {
  position: relative;
  width: 340px;
  min-height: 70px;
  padding: 15px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: help;
}

.integration-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.integration-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  text-align: left;
}

/* Icon Styles */
.integration-icon-wrapper {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  transition: all 0.3s ease;
}

.integration-card:hover .integration-icon-wrapper {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.integration-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.integration-text-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Integration Label */
.integration-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Integration Name */
.integration-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

/* Description */
.integration-description {
  display: none;
}

/* Link Button */
.integration-link-button {
  display: none;
}

.integration-link-button:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.integration-link-button .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.integration-link-button:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* Decorative Glow Effect */
.integration-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.integration-card:hover .integration-card-glow {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .integrations-section {
    padding: 60px 15px;
  }

  .integrations-title {
    font-size: 36px;
  }

  .integrations-subtitle {
    font-size: 18px;
  }

  .integration-card {
    width: 100%;
    max-width: 340px;
  }

  .integration-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .integration-name {
    font-size: 16px;
  }

  .integration-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .integrations-section {
    padding: 40px 10px;
  }

  .integrations-title {
    font-size: 28px;
  }

  .integrations-subtitle {
    font-size: 16px;
  }

  .integration-card {
    width: 100%;
    padding: 12px 15px;
    min-height: 60px;
  }

  .integration-icon-wrapper {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .integration-name {
    font-size: 15px;
  }

  .integration-label {
    font-size: 9px;
  }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Blocks/Hero/Hero.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
/* Hero Section Styles - Based on test.html */

.hero-section {
  position: relative;
  padding-top: calc(160px + var(--banner-height, 0px));
  padding-bottom: 80px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  /* height: 100vh; */
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

/* Ambient Glow Effect */
.ambient-glow {
  /* display: none; */
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-20%);
  width: 75%;
  height: 100vh;
  background: radial-gradient(circle at center, rgba(22, 129, 255, 0.18) 0%, rgba(2, 2, 3, 0) 70%);
  z-index: -1;
  animation: pulse-glow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 800;
  max-width: 600px;
  letter-spacing: -0.03em;
  margin: 0 auto 40px;
  color: white;
  background: linear-gradient(135deg, #fff 20%, #1681ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffffd7;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.3;
}

.hero-feature-description {
  font-size: 0.95rem;
  color: #ffffffc4;
  line-height: 1.3;
}

.hero-cta {
  background: #f5f5f5;
  color: #090909;
  padding: 18px 60px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  box-shadow: 0 0 40px rgba(22, 129, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 60px rgba(22, 129, 255, 0.6);
  background: #288bff;
  color: #fff;
  font-weight: 600;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0%;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  /* opacity: 0.15; */
  pointer-events: none;
  transform: scale(1.5) translateY(-5%); /* Увеличиваем масштаб и опускаем вниз */
  transition: transform 0.3s ease; /* Плавность для удобства */
}

.hero-features-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h3.hero-feature-title {
  text-transform: uppercase;
  text-shadow: 0px 1px 1px #0033ff;
}
/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding-top: calc(120px + var(--banner-height, 0px));
    padding-bottom: 60px;
  }

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

  .hero-cta {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* Features Section within Hero */
.hero-features-section {
  margin: 60px auto 0;
  width: 92%;
  max-width: 1100px;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
  gap: 16px;
  width: 100%;
}

.hero-feature-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  background: #010e41bf;
  border-radius: 16px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: help;
}

/* Градиентный бордер */
.hero-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 16px;
  pointer-events: none;

  background: linear-gradient(to bottom, rgba(151, 179, 255, 0.406), rgba(58, 60, 255, 0.75));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-feature-card:hover {
  border-color: rgba(22, 129, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(22, 129, 255, 0.2);
}

/* Asymmetric card sizes */
.hero-feature-card.card-0,
.hero-feature-card.card-2 {
  grid-column: span 1;
}

.hero-feature-card.card-1,
.hero-feature-card.card-3 {
  grid-column: span 1;
}

/* Make cards slightly different in width using transforms */
.hero-feature-card.card-0 {
  transform-origin: right center;
  margin-right: -50px;
}

.hero-feature-card.card-1 {
  transform-origin: left center;
  margin-left: 50px;
}

.hero-feature-card.card-2 {
  transform-origin: right center;
  margin-right: 50px;
}

.hero-feature-card.card-3 {
  transform-origin: left center;
  margin-left: -50px;
}

.hero-feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(22, 129, 255, 0.4));
}

/* Material Icon as feature icon */
.hero-feature-icon.material-symbols-outlined {
  font-size: 28px;
  color: #1681ff;
  width: auto;
  height: auto;
}

.hero-feature-title {
  margin: 0;
}

/* Partners Section at Bottom */
.hero-partners {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 70px 0 10px;
  z-index: 10;
  overflow: hidden;
}

.hero-partners-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 2, 3, 0) 0%,
    rgba(2, 2, 3, 0.5) 40%,
    rgba(2, 2, 3, 0.85) 60%,
    rgba(2, 2, 3, 1) 80%,
    rgba(2, 2, 3, 1) 100%
  );
  z-index: -1;
}

.hero-partners-content {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.hero-partners-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-partners-logos {
  flex: 1 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 80px,
    black calc(100% - 80px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 80px,
    black calc(100% - 80px),
    transparent 100%
  );
}

.hero-partners-track {
  display: flex;
  gap: 64px;
  animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-partners-track:hover {
  animation-play-state: paused;
}

.hero-partner-logo {
  height: 32px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: help;
}

.hero-partner-logo:hover {
  opacity: 1;
  filter: brightness(1) invert(0);
}

/* Responsive for Features and Partners */
@media (max-width: 900px) {
  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-feature-card.card-1,
  .hero-feature-card.card-3 {
    margin-left: 0;
  }

  .hero-partners-content {
    padding: 0 20px;
    gap: 24px;
  }

  .hero-partner-logo {
    height: 24px;
  }

  .hero-partners-label {
    font-size: 0.75rem;
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Blocks/Partners/Partners.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************/
/* Partners Section */
.partners-section {
  padding: 80px 20px;
  /* background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%); */
  position: relative;
  overflow: hidden;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-title {
  font-size: 48px;
  font-weight: 500;
  color: #292929;
  margin: 0 0 0 0;
}

.partners-subtitle {
  font-size: 48px;
  font-weight: 400;
  color: rgba(11, 16, 41, 0.5);
  margin: 0;
  /* line-height: 1.5; */
}

/* Slider Styles */
.partners-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.partners-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 440px;
  overflow: hidden;
}

.partners-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Partners Grid - 3 cards in a row */
.partners-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
}

.partner-card {
  flex: 1 1;
  min-width: 0;
  cursor: help;
}

/* Stats Card (Type 1 & 3) */
.partner-stats-card {
  height: 400px;
  width: 100%;
  background: linear-gradient(100deg, rgba(55, 88, 249, 0.046) 47.8%, rgba(55, 88, 249, 0) 96%);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px 40px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.partner-stats-card:hover {
  background: linear-gradient(100deg, rgba(55, 88, 249, 0.08) 47.8%, rgba(55, 88, 249, 0) 96%);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); */
}

.partner-stats-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

/* Logo in stats card */
.partner-logo-wrapper {
  margin-bottom: 30px;
  text-align: center;
}

.partner-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2);
}

/* Stats List */
.partner-stats-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1;
}

.partner-stat-item {
  text-align: left;
}

.partner-stat-value {
  font-size: 42px;
  font-weight: 700;
  color: #0b1029;
  margin: 0 0 4px 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.partner-stat-label {
  font-size: 16px;
  font-weight: 400;
  color: #0b1029aa;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* Link in stats card */
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #0b1029;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.partner-link:hover {
  color: #ffffff;
  gap: 10px;
}

.partner-link span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.partner-link:hover span {
  transform: translateX(4px);
}

/* Image Card (Type 2) */
.partner-image-card {
  height: 400px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.partner-image-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); */
}

.partner-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.partner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Logo overlay in center of image */
.partner-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 30px;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
  transition: all 0.3s ease;
}

.partner-image-card:hover .partner-logo-overlay {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.05);
  /* box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4); */
}

.partner-logo-center {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Navigation Arrows */
.partners-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #ffffff;
}

.partners-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.partners-arrow-left {
  left: -20px;
}

.partners-arrow-right {
  right: -20px;
}

.partners-arrow .material-symbols-outlined {
  font-size: 32px;
}

/* Dots Navigation */
.partners-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.partners-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.partners-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.partners-dot.active {
  background: #ffffff;
  width: 32px;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .partners-grid {
    flex-direction: column;
    gap: 20px;
  }

  .partner-card {
    width: 100%;
  }

  .partner-stats-card,
  .partner-image-card {
    height: 380px;
  }

  .partners-slider-wrapper {
    min-height: auto;
  }

  .partners-slide {
    position: relative;
  }

  .partners-slide.active {
    position: relative;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 60px 15px;
  }

  .partners-title {
    font-size: 36px;
  }

  .partners-subtitle {
    font-size: 18px;
  }

  .partners-slider {
    padding: 0 40px;
  }

  .partner-stats-card,
  .partner-image-card {
    height: 340px;
    padding: 30px 30px 16px;
  }

  .partner-stat-value {
    font-size: 36px;
  }

  .partner-stat-label {
    font-size: 14px;
  }

  .partners-arrow {
    width: 40px;
    height: 40px;
  }

  .partners-arrow .material-symbols-outlined {
    font-size: 24px;
  }

  .partner-logo-center {
    max-height: 50px;
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 40px 10px;
  }

  .partners-title {
    font-size: 28px;
  }

  .partners-subtitle {
    font-size: 16px;
  }

  .partners-slider {
    padding: 0 30px;
  }

  .partner-stats-card,
  .partner-image-card {
    height: 300px;
    padding: 24px 24px 12px;
  }

  .partner-logo {
    max-height: 40px;
  }

  .partner-stat-value {
    font-size: 32px;
  }

  .partner-stat-label {
    font-size: 13px;
  }

  .partner-link {
    font-size: 13px;
  }

  .partners-arrow {
    width: 36px;
    height: 36px;
  }

  .partners-arrow .material-symbols-outlined {
    font-size: 20px;
  }

  .partners-dot {
    width: 10px;
    height: 10px;
  }

  .partners-dot.active {
    width: 24px;
  }

  .partner-logo-center {
    max-height: 40px;
    max-width: 140px;
  }

  .partner-logo-overlay {
    padding: 15px 20px;
  }
}

/* Desktop large screens optimization */
@media (min-width: 1440px) and (max-width: 2560px) {
  .partners-grid {
    gap: 20px;
    padding: 20px;
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Blocks/Services/Services.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************/
/* Services Section */
.services-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-logo {
  width: 150px;
  object-fit: contain;
}

.services-logo-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #0070f3;
}

.services-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 0;
  color: #292929;
  line-height: 1;
}

.services-description {
  font-size: 48px;
  color: rgba(11, 16, 41, 0.5);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Service Card */
.service-card {
  position: relative;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 525px;
  cursor: help;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  filter: contrast(115%) saturate(185%) sepia(0%) hue-rotate(-10deg) brightness(110%);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Overlay for background image - темный градиент снизу для читаемости */
.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Card Content */
.service-card-content {
  position: relative;
  z-index: 2;
  padding: 1.35rem;
  height: 100%;
  display: grid;
  grid-template-rows: 64px auto 1px auto 1px 1fr auto;
  border-radius: 12px;
}

/* Service Icon */
.service-icon {
  width: 48px;
  height: 48px;
  margin-top: 10px;
  object-fit: contain;
  /* filter: brightness(0) invert(1);
  opacity: 0.125; */
  color: #ffffff60;
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff60;
}

/* Service Title */
.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.9rem;
  min-height: 3.9rem;
  margin-bottom: 0;
}

/* Description 1 */
.service-description-1 {
  /* font-size: 18px; */
  color: #ffffff;
  /* line-height: 1; */
  font-weight: 400;
  display: -webkit-box;
  /* -webkit-line-clamp: 4; */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 8rem;
  min-height: 8rem;
  margin-bottom: 0;
}

.service-description-1-faded {
  color: rgba(255, 255, 255, 0.5);
}

/* Divider Line */
.service-divider {
  width: 100%;
  height: 0.5px;
  background: #ffffff40;
  align-self: center;
}

/* Description 2 */
.service-description-2 {
  font-size: 15px;
  color: #ffffff80;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 8rem;
}

/* Service Button */
.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 14px;
  background: #ffffff;
  color: radial-gradient(135deg, #1d4fc4 100%, #1d4fc4 60%);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 112, 243, 0.3);
  align-self: flex-start;
}

.service-button .material-icon {
  transition: transform 0.3s ease;
}

.service-button:hover {
  background: linear-gradient(135deg, #0066ff 0%, #106df8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 112, 243, 0.4);
  color: #ffffff;
}

.service-button:hover .material-icon {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 1.5rem;
  }

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

  .services-description {
    font-size: 1rem;
  }

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

  .service-card {
    height: 550px;
  }

  .service-card-content {
    padding: 2rem;
    grid-template-rows: 56px auto 1px auto 1px 1fr auto;
    gap: 0.875rem;
  }

  .service-icon,
  .service-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .service-title {
    font-size: 1.25rem;
    max-height: 3.25rem;
  }

  .service-description-1 {
    font-size: 0.9375rem;
  }

  .service-description-2 {
    font-size: 0.875rem;
  }
}

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

  .services-logo {
    width: 60px;
    height: 60px;
  }

  .services-title {
    font-size: 1.75rem;
  }

  .service-card {
    height: 500px;
  }

  .service-card-content {
    padding: 1.5rem;
    grid-template-rows: 48px auto 1px auto 1px 1fr auto;
    gap: 0.75rem;
  }

  .service-icon,
  .service-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .service-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

