* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #fafbff;
  color: #1d1e20;
  line-height: 1.5;
}

.container {
  max-width: 1110px;
  margin: 0px auto;
  padding: 0 32px;
  box-sizing: content-box;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 420px;
}

.domain-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.domain-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  color: #1d1e20;
  font-family: 'DM Sans', sans-serif;
  word-break: break-word;
}

.registered-at {
  display: flex;
  align-items: center;
  gap: 16px;
}

.registered-text {
  font-size: 16px;
  color: #1d1e20;
  font-family: 'DM Sans', sans-serif;
}

.logotype {
  width: 150px;
  height: 30px;
}

.description {
  font-size: 16px;
  color: #1d1e20;
  max-width: 384px;
  font-family: 'DM Sans', sans-serif;
}

.figma-button {
  background-color: #673de6;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  min-height: 40px;
  min-width: 96px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
  width: fit-content;
  text-decoration: none;
  display: inline-block;
}

.figma-button:hover {
  opacity: 0.9;
}

.visual-mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 658px;
  height: 363px;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.visual-mockup .bg-elements {
  position: absolute;
  inset: 0;
}

.bg-rect-1 {
  position: absolute;
  background: #d5dfff;
  height: 51px;
  width: 328px;
  right: 320px;
  top: 247px;
}

.bg-rect-2 {
  position: absolute;
  background: #d5dfff;
  height: 45px;
  width: 112px;
  right: 163px;
  top: 298px;
}

.bg-rect-3 {
  position: absolute;
  background: #d5dfff;
  height: 45px;
  width: 112px;
  right: 321px;
  top: 298px;
}

.bg-rect-4 {
  position: absolute;
  background: #d5dfff;
  height: 45px;
  width: 52px;
  right: 492px;
  top: 298px;
}

.bg-rect-5 {
  position: absolute;
  background: #d5dfff;
  width: 16px;
  height: 16px;
  right: 27px;
  top: 261px;
}

.bg-rect-6 {
  position: absolute;
  background: #d5dfff;
  height: 45px;
  width: 101px;
  right: 62px;
  top: 298px;
}

.main-showcase {
  position: absolute;
  background: white;
  height: 238px;
  width: 423px;
  right: 118px;
  top: 50px;
  border-radius: 11px;
  border: 1px solid #c3cce9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.showcase-nav {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
  font-size: 6px;
  font-weight: 600;
  color: #2f1c6a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bold-text {
  position: absolute;
  left: 46px;
  top: 64px;
  font-size: 41px;
  line-height: 0.89;
  font-weight: 900;
  color: #8c85ff;
  letter-spacing: -0.025em;
}

.shop-now {
  position: absolute;
  left: 46px;
  top: 145px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-text {
  color: #2f1c6a;
  font-size: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-line {
  width: 16px;
  height: 1px;
  background: #2f1c6a;
}

.domain-tags {
  position: absolute;
  right: 78px;
  top: 36px;
  display: flex;
  gap: 4px;
}

.domain-tag-1 {
  background: linear-gradient(to right, rgba(103, 61, 230, 0.2), transparent);
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid #eaeaff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.domain-tag-2 {
  background: #673de6;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid #5025d1;
}

.tag-text-1 {
  font-size: 10px;
  font-weight: bold;
  color: #45219c;
}

.tag-text-2 {
  font-size: 10px;
  font-weight: bold;
  color: white;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-title {
  font-size: 24px;
  font-weight: bold;
  color: #1d1e20;
  line-height: 36px;
  font-family: 'DM Sans', sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.service-card {
  background: #f4f5ff;
  border: none;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.service-card-large {
  background: #f4f5ff;
  border: none;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.service-icon {
  background: #d5dfff;
  padding: 8px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 12px;
  display: flex;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  color: #2f1c6a;
  fill: currentColor;
}

.service-title {
  font-size: 20px;
  color: #1d1e20;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.service-description {
  font-size: 16px;
  color: #1d1e20;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-button {
  border: 1px solid #673de6;
  color: #673de6;
  background: transparent;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
  text-decoration: none;
  display: inline-block;
}

.service-button:hover {
  background: #673de6;
  color: white;
}

.search-container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-input-wrapper {
  flex: 1;
}

.search-input {
  background: white;
  border: 1px solid #d8dae0;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-input input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 14px;
  line-height: 24px;
  font-family: 'DM Sans', sans-serif;
  color: #6D7081;
}

.search-input input::placeholder {
  color: #6d7081;
}

.search-icon {
  width: 24px;
  height: 24px;
  color: #6d7081;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header {
    flex-direction: row;
    align-items: flex-start;
  }

  .visual-mockup {
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    margin: 56px auto;
  }

  .header {
    margin-bottom: 56px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .services-grid-2 {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .services {
    row-gap: 16px;
  }

  .search-container {
    flex-direction: column;
    align-items: stretch;
  }
}
 